main.ls 46 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824
  1. {
  2. "version":"LAYASCENE3D:01",
  3. "data":{
  4. "type":"Scene3D",
  5. "props":{
  6. "name":"main",
  7. "ambientColor":[
  8. 0.212,
  9. 0.227,
  10. 0.259
  11. ],
  12. "lightmaps":[],
  13. "enableFog":false,
  14. "fogStart":0,
  15. "fogRange":300,
  16. "fogColor":[
  17. 0.5,
  18. 0.5,
  19. 0.5
  20. ]
  21. },
  22. "child":[
  23. {
  24. "type":"Camera",
  25. "props":{
  26. "name":"Main Camera",
  27. "active":true,
  28. "isStatic":false,
  29. "layer":0,
  30. "position":[
  31. 1.71,
  32. 7.4,
  33. -10.01
  34. ],
  35. "rotation":[
  36. -0.02379568,
  37. 0.9470121,
  38. 0.3120562,
  39. 0.07226899
  40. ],
  41. "scale":[
  42. 1,
  43. 1,
  44. 1
  45. ],
  46. "clearFlag":0,
  47. "orthographic":false,
  48. "fieldOfView":60,
  49. "nearPlane":0.3,
  50. "farPlane":1000,
  51. "viewport":[
  52. 0,
  53. 0,
  54. 1,
  55. 1
  56. ],
  57. "clearColor":[
  58. 1,
  59. 1,
  60. 1,
  61. 0
  62. ]
  63. },
  64. "components":[],
  65. "child":[]
  66. },
  67. {
  68. "type":"DirectionLight",
  69. "props":{
  70. "name":"Directional Light",
  71. "active":true,
  72. "isStatic":false,
  73. "layer":0,
  74. "position":[
  75. 0,
  76. 3,
  77. 0
  78. ],
  79. "rotation":[
  80. 0.1093816,
  81. 0.8754261,
  82. 0.4082179,
  83. -0.2345697
  84. ],
  85. "scale":[
  86. 1,
  87. 1,
  88. 1
  89. ],
  90. "intensity":1,
  91. "lightmapBakedType":0,
  92. "color":[
  93. 1,
  94. 0.9568627,
  95. 0.8392157
  96. ]
  97. },
  98. "components":[],
  99. "child":[]
  100. },
  101. {
  102. "type":"MeshSprite3D",
  103. "props":{
  104. "name":"Plane",
  105. "active":true,
  106. "isStatic":false,
  107. "layer":0,
  108. "position":[
  109. 0,
  110. 0,
  111. 0
  112. ],
  113. "rotation":[
  114. 0,
  115. 0,
  116. 0,
  117. -1
  118. ],
  119. "scale":[
  120. 100,
  121. 100,
  122. 100
  123. ],
  124. "meshPath":"Library/unity default resources-Plane.lm",
  125. "enableRender":true,
  126. "materials":[
  127. {
  128. "type":"Laya.BlinnPhongMaterial",
  129. "path":"Resources/unity_builtin_extra.lmat"
  130. }
  131. ]
  132. },
  133. "components":[],
  134. "child":[]
  135. },
  136. {
  137. "type":"Sprite3D",
  138. "props":{
  139. "name":"Wall",
  140. "active":true,
  141. "isStatic":false,
  142. "layer":0,
  143. "position":[
  144. 0,
  145. 0,
  146. 0
  147. ],
  148. "rotation":[
  149. 0,
  150. 0,
  151. 0,
  152. -1
  153. ],
  154. "scale":[
  155. 1,
  156. 1,
  157. 1
  158. ]
  159. },
  160. "components":[],
  161. "child":[
  162. {
  163. "type":"MeshSprite3D",
  164. "props":{
  165. "name":"wall (2)",
  166. "active":true,
  167. "isStatic":false,
  168. "layer":8,
  169. "position":[
  170. 2.83,
  171. -0.51,
  172. 0
  173. ],
  174. "rotation":[
  175. 0,
  176. 0,
  177. 0,
  178. -1
  179. ],
  180. "scale":[
  181. 0.2023941,
  182. 4.093081,
  183. 3.480307
  184. ],
  185. "meshPath":"Library/unity default resources-Cube.lm",
  186. "enableRender":true,
  187. "materials":[
  188. {
  189. "type":"Laya.BlinnPhongMaterial",
  190. "path":"Assets/RM.lmat"
  191. }
  192. ]
  193. },
  194. "components":[
  195. {
  196. "type":"PhysicsCollider",
  197. "restitution":0,
  198. "friction":0.5,
  199. "rollingFriction":0,
  200. "shapes":[
  201. {
  202. "type":"BoxColliderShape",
  203. "center":[
  204. 0,
  205. 0,
  206. 0
  207. ],
  208. "size":[
  209. 1,
  210. 1,
  211. 1
  212. ]
  213. }
  214. ],
  215. "isTrigger":false
  216. }
  217. ],
  218. "child":[]
  219. },
  220. {
  221. "type":"MeshSprite3D",
  222. "props":{
  223. "name":"wall (3)",
  224. "active":true,
  225. "isStatic":false,
  226. "layer":8,
  227. "position":[
  228. -0.11,
  229. -0.56,
  230. 0
  231. ],
  232. "rotation":[
  233. 0,
  234. 0,
  235. 0,
  236. -1
  237. ],
  238. "scale":[
  239. 0.20239,
  240. 4.09308,
  241. 3.48031
  242. ],
  243. "meshPath":"Library/unity default resources-Cube.lm",
  244. "enableRender":true,
  245. "materials":[
  246. {
  247. "type":"Laya.BlinnPhongMaterial",
  248. "path":"Assets/RM.lmat"
  249. }
  250. ]
  251. },
  252. "components":[
  253. {
  254. "type":"PhysicsCollider",
  255. "restitution":0,
  256. "friction":0.5,
  257. "rollingFriction":0,
  258. "shapes":[
  259. {
  260. "type":"BoxColliderShape",
  261. "center":[
  262. 0,
  263. 0,
  264. 0
  265. ],
  266. "size":[
  267. 1,
  268. 1,
  269. 1
  270. ]
  271. }
  272. ],
  273. "isTrigger":false
  274. }
  275. ],
  276. "child":[]
  277. },
  278. {
  279. "type":"MeshSprite3D",
  280. "props":{
  281. "name":"wall (4)",
  282. "active":true,
  283. "isStatic":false,
  284. "layer":8,
  285. "position":[
  286. -2.46,
  287. -0.56,
  288. 0
  289. ],
  290. "rotation":[
  291. 0,
  292. 0,
  293. 0,
  294. -1
  295. ],
  296. "scale":[
  297. 0.20239,
  298. 4.09308,
  299. 3.48031
  300. ],
  301. "meshPath":"Library/unity default resources-Cube.lm",
  302. "enableRender":true,
  303. "materials":[
  304. {
  305. "type":"Laya.BlinnPhongMaterial",
  306. "path":"Assets/RM.lmat"
  307. }
  308. ]
  309. },
  310. "components":[
  311. {
  312. "type":"PhysicsCollider",
  313. "restitution":0,
  314. "friction":0.5,
  315. "rollingFriction":0,
  316. "shapes":[
  317. {
  318. "type":"BoxColliderShape",
  319. "center":[
  320. 0,
  321. 0,
  322. 0
  323. ],
  324. "size":[
  325. 1,
  326. 1,
  327. 1
  328. ]
  329. }
  330. ],
  331. "isTrigger":false
  332. }
  333. ],
  334. "child":[]
  335. }
  336. ]
  337. },
  338. {
  339. "type":"Sprite3D",
  340. "props":{
  341. "name":"Mosters",
  342. "active":true,
  343. "isStatic":false,
  344. "layer":0,
  345. "position":[
  346. 0,
  347. 0,
  348. 0
  349. ],
  350. "rotation":[
  351. 0,
  352. 0,
  353. 0,
  354. -1
  355. ],
  356. "scale":[
  357. 1,
  358. 1,
  359. 1
  360. ]
  361. },
  362. "components":[],
  363. "child":[]
  364. },
  365. {
  366. "type":"Sprite3D",
  367. "props":{
  368. "name":"Players",
  369. "active":true,
  370. "isStatic":false,
  371. "layer":0,
  372. "position":[
  373. 0,
  374. 0,
  375. 0
  376. ],
  377. "rotation":[
  378. 0,
  379. 0,
  380. 0,
  381. -1
  382. ],
  383. "scale":[
  384. 1,
  385. 1,
  386. 1
  387. ]
  388. },
  389. "components":[],
  390. "child":[
  391. {
  392. "type":"Sprite3D",
  393. "props":{
  394. "name":"role2",
  395. "active":true,
  396. "isStatic":false,
  397. "layer":9,
  398. "position":[
  399. 0.893,
  400. 0,
  401. -2.857
  402. ],
  403. "rotation":[
  404. 0,
  405. -0.452746,
  406. 0,
  407. -0.8916396
  408. ],
  409. "scale":[
  410. 1,
  411. 1,
  412. 1
  413. ]
  414. },
  415. "components":[
  416. {
  417. "type":"PhysicsCollider",
  418. "restitution":0,
  419. "friction":0.5,
  420. "rollingFriction":0,
  421. "shapes":[
  422. {
  423. "type":"CapsuleColliderShape",
  424. "center":[
  425. 0,
  426. 0.41,
  427. 0.03
  428. ],
  429. "radius":0.15,
  430. "height":1.55
  431. }
  432. ],
  433. "isTrigger":false
  434. }
  435. ],
  436. "child":[
  437. {
  438. "type":"Sprite3D",
  439. "props":{
  440. "name":"Bip001",
  441. "active":true,
  442. "isStatic":false,
  443. "layer":9,
  444. "position":[
  445. 0.0001814279,
  446. 0.383626,
  447. -5.974358E-10
  448. ],
  449. "rotation":[
  450. 0.4230798,
  451. 0.3877015,
  452. 0.5913433,
  453. -0.5665723
  454. ],
  455. "scale":[
  456. 1,
  457. 1,
  458. 1
  459. ]
  460. },
  461. "components":[],
  462. "child":[
  463. {
  464. "type":"Sprite3D",
  465. "props":{
  466. "name":"Bip001 Footsteps",
  467. "active":true,
  468. "isStatic":false,
  469. "layer":9,
  470. "position":[
  471. 0.133527,
  472. 0.0223964,
  473. -0.3661782
  474. ],
  475. "rotation":[
  476. 0.1014645,
  477. 0.1439965,
  478. -0.6922892,
  479. -0.6997898
  480. ],
  481. "scale":[
  482. 1,
  483. 1,
  484. 1
  485. ]
  486. },
  487. "components":[],
  488. "child":[]
  489. },
  490. {
  491. "type":"Sprite3D",
  492. "props":{
  493. "name":"Bip001 Pelvis",
  494. "active":true,
  495. "isStatic":false,
  496. "layer":9,
  497. "position":[
  498. 0,
  499. 0,
  500. 0
  501. ],
  502. "rotation":[
  503. 0.4708487,
  504. 0.5275422,
  505. 0.5065019,
  506. -0.4934131
  507. ],
  508. "scale":[
  509. 1,
  510. 1,
  511. 1
  512. ]
  513. },
  514. "components":[],
  515. "child":[
  516. {
  517. "type":"Sprite3D",
  518. "props":{
  519. "name":"Bip001 Spine",
  520. "active":true,
  521. "isStatic":false,
  522. "layer":9,
  523. "position":[
  524. 0.03935772,
  525. 0.002701044,
  526. -1.018047E-06
  527. ],
  528. "rotation":[
  529. -0.01520365,
  530. 0.01709478,
  531. -0.08092123,
  532. -0.9964579
  533. ],
  534. "scale":[
  535. 1,
  536. 1,
  537. 0.9999999
  538. ]
  539. },
  540. "components":[],
  541. "child":[
  542. {
  543. "type":"Sprite3D",
  544. "props":{
  545. "name":"Bip001 L Thigh",
  546. "active":true,
  547. "isStatic":false,
  548. "layer":9,
  549. "position":[
  550. -0.03739624,
  551. 0.005103169,
  552. 0.0521228
  553. ],
  554. "rotation":[
  555. -0.01978222,
  556. 0.997101,
  557. -0.02680281,
  558. -0.06840958
  559. ],
  560. "scale":[
  561. 0.9999999,
  562. 1,
  563. 1
  564. ]
  565. },
  566. "components":[],
  567. "child":[
  568. {
  569. "type":"Sprite3D",
  570. "props":{
  571. "name":"Bip001 L Calf",
  572. "active":true,
  573. "isStatic":false,
  574. "layer":9,
  575. "position":[
  576. 0.1994532,
  577. 0,
  578. 0
  579. ],
  580. "rotation":[
  581. 2.412072E-11,
  582. 1.024452E-08,
  583. 0.002354494,
  584. -0.9999973
  585. ],
  586. "scale":[
  587. 1,
  588. 1,
  589. 1
  590. ]
  591. },
  592. "components":[],
  593. "child":[
  594. {
  595. "type":"Sprite3D",
  596. "props":{
  597. "name":"Bip001 L Foot",
  598. "active":true,
  599. "isStatic":false,
  600. "layer":9,
  601. "position":[
  602. 0.16141,
  603. 0,
  604. 0
  605. ],
  606. "rotation":[
  607. -0.02946053,
  608. 0.02594521,
  609. 0.03523089,
  610. -0.9986079
  611. ],
  612. "scale":[
  613. 1,
  614. 1,
  615. 1
  616. ]
  617. },
  618. "components":[],
  619. "child":[
  620. {
  621. "type":"Sprite3D",
  622. "props":{
  623. "name":"Bip001 L Toe0",
  624. "active":true,
  625. "isStatic":false,
  626. "layer":9,
  627. "position":[
  628. 0.03768723,
  629. 0.03137714,
  630. -4.768371E-09
  631. ],
  632. "rotation":[
  633. 0.02087384,
  634. -0.01708613,
  635. -0.856628,
  636. -0.5152289
  637. ],
  638. "scale":[
  639. 0.9999999,
  640. 0.9999998,
  641. 0.9999999
  642. ]
  643. },
  644. "components":[],
  645. "child":[
  646. {
  647. "type":"Sprite3D",
  648. "props":{
  649. "name":"Bip001 L Toe0Nub",
  650. "active":true,
  651. "isStatic":false,
  652. "layer":9,
  653. "position":[
  654. 0.02286625,
  655. 5.960464E-10,
  656. -4.768371E-09
  657. ],
  658. "rotation":[
  659. -1.047738E-09,
  660. -9.313227E-10,
  661. 1,
  662. -6.220812E-17
  663. ],
  664. "scale":[
  665. -0.9999999,
  666. -0.9999999,
  667. -1
  668. ]
  669. },
  670. "components":[],
  671. "child":[]
  672. }
  673. ]
  674. }
  675. ]
  676. }
  677. ]
  678. }
  679. ]
  680. },
  681. {
  682. "type":"Sprite3D",
  683. "props":{
  684. "name":"Bip001 R Thigh",
  685. "active":true,
  686. "isStatic":false,
  687. "layer":9,
  688. "position":[
  689. -0.04111053,
  690. 0.002303371,
  691. -0.04945412
  692. ],
  693. "rotation":[
  694. 0.6112156,
  695. 0.787437,
  696. -0.06998438,
  697. -0.03822002
  698. ],
  699. "scale":[
  700. 1,
  701. 1,
  702. 1
  703. ]
  704. },
  705. "components":[],
  706. "child":[
  707. {
  708. "type":"Sprite3D",
  709. "props":{
  710. "name":"Bip001 R Calf",
  711. "active":true,
  712. "isStatic":false,
  713. "layer":9,
  714. "position":[
  715. 0.1994532,
  716. 0,
  717. 7.152557E-09
  718. ],
  719. "rotation":[
  720. 4.449679E-09,
  721. 6.048048E-09,
  722. 0.687946,
  723. -0.725762
  724. ],
  725. "scale":[
  726. 0.9999999,
  727. 1,
  728. 1
  729. ]
  730. },
  731. "components":[],
  732. "child":[
  733. {
  734. "type":"Sprite3D",
  735. "props":{
  736. "name":"Bip001 R Foot",
  737. "active":true,
  738. "isStatic":false,
  739. "layer":9,
  740. "position":[
  741. 0.1614099,
  742. 9.536743E-09,
  743. -2.384186E-09
  744. ],
  745. "rotation":[
  746. -0.01955102,
  747. 0.04674867,
  748. 0.1207695,
  749. -0.9913864
  750. ],
  751. "scale":[
  752. 1,
  753. 0.9999999,
  754. 0.9999998
  755. ]
  756. },
  757. "components":[],
  758. "child":[
  759. {
  760. "type":"Sprite3D",
  761. "props":{
  762. "name":"Bip001 R Toe0",
  763. "active":true,
  764. "isStatic":false,
  765. "layer":9,
  766. "position":[
  767. 0.03768724,
  768. 0.03137714,
  769. -4.768371E-09
  770. ],
  771. "rotation":[
  772. 1.712216E-08,
  773. 1.448798E-08,
  774. -0.7071068,
  775. -0.7071068
  776. ],
  777. "scale":[
  778. 1,
  779. 1,
  780. 1
  781. ]
  782. },
  783. "components":[],
  784. "child":[
  785. {
  786. "type":"Sprite3D",
  787. "props":{
  788. "name":"Bip001 R Toe0Nub",
  789. "active":true,
  790. "isStatic":false,
  791. "layer":9,
  792. "position":[
  793. 0.02286626,
  794. -9.536743E-09,
  795. -4.768371E-09
  796. ],
  797. "rotation":[
  798. 1.862645E-09,
  799. -5.551115E-17,
  800. 2.980232E-08,
  801. -1
  802. ],
  803. "scale":[
  804. 1,
  805. 1,
  806. 1
  807. ]
  808. },
  809. "components":[],
  810. "child":[]
  811. }
  812. ]
  813. }
  814. ]
  815. }
  816. ]
  817. }
  818. ]
  819. },
  820. {
  821. "type":"Sprite3D",
  822. "props":{
  823. "name":"Bip001 Spine1",
  824. "active":true,
  825. "isStatic":false,
  826. "layer":9,
  827. "position":[
  828. 0.05830131,
  829. -5.449295E-05,
  830. 4.680157E-06
  831. ],
  832. "rotation":[
  833. 0.04201632,
  834. -0.0428243,
  835. 0.01932062,
  836. -0.9980118
  837. ],
  838. "scale":[
  839. 1,
  840. 1,
  841. 0.9999999
  842. ]
  843. },
  844. "components":[],
  845. "child":[
  846. {
  847. "type":"Sprite3D",
  848. "props":{
  849. "name":"Bip001 Spine2",
  850. "active":true,
  851. "isStatic":false,
  852. "layer":9,
  853. "position":[
  854. 0.06872764,
  855. -4.587173E-05,
  856. 3.066063E-06
  857. ],
  858. "rotation":[
  859. 0.03352127,
  860. -0.009249561,
  861. -0.01714038,
  862. -0.9992483
  863. ],
  864. "scale":[
  865. 1,
  866. 0.9999999,
  867. 1
  868. ]
  869. },
  870. "components":[],
  871. "child":[
  872. {
  873. "type":"Sprite3D",
  874. "props":{
  875. "name":"Bip001 Neck",
  876. "active":true,
  877. "isStatic":false,
  878. "layer":9,
  879. "position":[
  880. 0.07455131,
  881. -3.282547E-05,
  882. 1.192093E-09
  883. ],
  884. "rotation":[
  885. 9.313226E-10,
  886. -1.387779E-17,
  887. 1.490116E-08,
  888. -1
  889. ],
  890. "scale":[
  891. 1,
  892. 1,
  893. 1
  894. ]
  895. },
  896. "components":[],
  897. "child":[
  898. {
  899. "type":"Sprite3D",
  900. "props":{
  901. "name":"Bip001 Head",
  902. "active":true,
  903. "isStatic":false,
  904. "layer":9,
  905. "position":[
  906. 0.02397934,
  907. 3.623962E-07,
  908. 0
  909. ],
  910. "rotation":[
  911. -0.03477098,
  912. -0.0009561267,
  913. 0.1906888,
  914. -0.9810341
  915. ],
  916. "scale":[
  917. 1,
  918. 1,
  919. 1
  920. ]
  921. },
  922. "components":[],
  923. "child":[
  924. {
  925. "type":"Sprite3D",
  926. "props":{
  927. "name":"Bip001 HeadNub",
  928. "active":true,
  929. "isStatic":false,
  930. "layer":9,
  931. "position":[
  932. 0.2100853,
  933. 4.768371E-09,
  934. -1.788139E-09
  935. ],
  936. "rotation":[
  937. 5.238689E-10,
  938. -4.656612E-10,
  939. 1.862645E-09,
  940. -1
  941. ],
  942. "scale":[
  943. 1,
  944. 1,
  945. 1
  946. ]
  947. },
  948. "components":[],
  949. "child":[]
  950. }
  951. ]
  952. },
  953. {
  954. "type":"Sprite3D",
  955. "props":{
  956. "name":"Bip001 L Clavicle",
  957. "active":true,
  958. "isStatic":false,
  959. "layer":9,
  960. "position":[
  961. -0.03349563,
  962. -0.008514919,
  963. 0.03452913
  964. ],
  965. "rotation":[
  966. -0.7052953,
  967. -0.05058223,
  968. -0.7052548,
  969. -0.05114392
  970. ],
  971. "scale":[
  972. 1,
  973. 1,
  974. 1
  975. ]
  976. },
  977. "components":[],
  978. "child":[
  979. {
  980. "type":"Sprite3D",
  981. "props":{
  982. "name":"Bip001 L UpperArm",
  983. "active":true,
  984. "isStatic":false,
  985. "layer":9,
  986. "position":[
  987. 0.04234784,
  988. 0,
  989. 3.814697E-08
  990. ],
  991. "rotation":[
  992. 0.1030474,
  993. -0.602128,
  994. 0.09053381,
  995. -0.7865283
  996. ],
  997. "scale":[
  998. 1,
  999. 1,
  1000. 1
  1001. ]
  1002. },
  1003. "components":[],
  1004. "child":[
  1005. {
  1006. "type":"Sprite3D",
  1007. "props":{
  1008. "name":"Bip001 L Forearm",
  1009. "active":true,
  1010. "isStatic":false,
  1011. "layer":9,
  1012. "position":[
  1013. 0.1430661,
  1014. 4.768371E-09,
  1015. 0
  1016. ],
  1017. "rotation":[
  1018. 2.157647E-08,
  1019. 2.339945E-08,
  1020. 0.3765946,
  1021. -0.9263782
  1022. ],
  1023. "scale":[
  1024. 0.9999999,
  1025. 1,
  1026. 1
  1027. ]
  1028. },
  1029. "components":[],
  1030. "child":[
  1031. {
  1032. "type":"Sprite3D",
  1033. "props":{
  1034. "name":"Bip001 L Hand",
  1035. "active":true,
  1036. "isStatic":false,
  1037. "layer":9,
  1038. "position":[
  1039. 0.130876,
  1040. 1.907349E-08,
  1041. -1.907349E-08
  1042. ],
  1043. "rotation":[
  1044. 0.6857744,
  1045. -0.1787936,
  1046. 0.08455081,
  1047. -0.7004267
  1048. ],
  1049. "scale":[
  1050. 1,
  1051. 1,
  1052. 1
  1053. ]
  1054. },
  1055. "components":[],
  1056. "child":[
  1057. {
  1058. "type":"Sprite3D",
  1059. "props":{
  1060. "name":"Bip001 L Finger0",
  1061. "active":true,
  1062. "isStatic":false,
  1063. "layer":9,
  1064. "position":[
  1065. 0.01991156,
  1066. 0.006874237,
  1067. -0.003393173
  1068. ],
  1069. "rotation":[
  1070. -0.6306518,
  1071. -0.3812583,
  1072. -0.06305109,
  1073. -0.6730119
  1074. ],
  1075. "scale":[
  1076. 1,
  1077. 0.9999999,
  1078. 1
  1079. ]
  1080. },
  1081. "components":[],
  1082. "child":[
  1083. {
  1084. "type":"Sprite3D",
  1085. "props":{
  1086. "name":"Bip001 L Finger01",
  1087. "active":true,
  1088. "isStatic":false,
  1089. "layer":9,
  1090. "position":[
  1091. 0.02331205,
  1092. 0,
  1093. 0
  1094. ],
  1095. "rotation":[
  1096. -1.501668E-08,
  1097. 1.154547E-10,
  1098. -0.1164022,
  1099. -0.9932021
  1100. ],
  1101. "scale":[
  1102. 1,
  1103. 1,
  1104. 1
  1105. ]
  1106. },
  1107. "components":[],
  1108. "child":[
  1109. {
  1110. "type":"Sprite3D",
  1111. "props":{
  1112. "name":"Bip001 L Finger0Nub",
  1113. "active":true,
  1114. "isStatic":false,
  1115. "layer":9,
  1116. "position":[
  1117. 0.02473909,
  1118. 0,
  1119. -9.536743E-09
  1120. ],
  1121. "rotation":[
  1122. -7.450581E-09,
  1123. 1.110223E-16,
  1124. 1.490116E-08,
  1125. -1
  1126. ],
  1127. "scale":[
  1128. 1,
  1129. 0.9999999,
  1130. 1
  1131. ]
  1132. },
  1133. "components":[],
  1134. "child":[]
  1135. }
  1136. ]
  1137. }
  1138. ]
  1139. },
  1140. {
  1141. "type":"Sprite3D",
  1142. "props":{
  1143. "name":"Bip001 L Finger1",
  1144. "active":true,
  1145. "isStatic":false,
  1146. "layer":9,
  1147. "position":[
  1148. 0.05388303,
  1149. -0.007240429,
  1150. 3.915787E-05
  1151. ],
  1152. "rotation":[
  1153. 0.005724601,
  1154. 0.006598467,
  1155. -0.6201894,
  1156. -0.7844034
  1157. ],
  1158. "scale":[
  1159. 1,
  1160. 1,
  1161. 1
  1162. ]
  1163. },
  1164. "components":[],
  1165. "child":[
  1166. {
  1167. "type":"Sprite3D",
  1168. "props":{
  1169. "name":"Bip001 L Finger11",
  1170. "active":true,
  1171. "isStatic":false,
  1172. "layer":9,
  1173. "position":[
  1174. 0.02719702,
  1175. 0,
  1176. 0
  1177. ],
  1178. "rotation":[
  1179. 0.003264842,
  1180. 0.008092806,
  1181. -0.5783984,
  1182. -0.8157077
  1183. ],
  1184. "scale":[
  1185. 0.9999999,
  1186. 0.9999999,
  1187. 1
  1188. ]
  1189. },
  1190. "components":[],
  1191. "child":[
  1192. {
  1193. "type":"Sprite3D",
  1194. "props":{
  1195. "name":"Bip001 L Finger1Nub",
  1196. "active":true,
  1197. "isStatic":false,
  1198. "layer":9,
  1199. "position":[
  1200. 0.02530765,
  1201. 0,
  1202. 0
  1203. ],
  1204. "rotation":[
  1205. 1.490116E-08,
  1206. 0,
  1207. 0,
  1208. -1
  1209. ],
  1210. "scale":[
  1211. 1,
  1212. 1,
  1213. 1
  1214. ]
  1215. },
  1216. "components":[],
  1217. "child":[]
  1218. }
  1219. ]
  1220. }
  1221. ]
  1222. }
  1223. ]
  1224. }
  1225. ]
  1226. }
  1227. ]
  1228. }
  1229. ]
  1230. },
  1231. {
  1232. "type":"Sprite3D",
  1233. "props":{
  1234. "name":"Bip001 R Clavicle",
  1235. "active":true,
  1236. "isStatic":false,
  1237. "layer":9,
  1238. "position":[
  1239. -0.03349563,
  1240. -0.008514728,
  1241. -0.03452918
  1242. ],
  1243. "rotation":[
  1244. -0.7063059,
  1245. -0.03364539,
  1246. 0.7062789,
  1247. 0.0342079
  1248. ],
  1249. "scale":[
  1250. 1,
  1251. 1,
  1252. 1
  1253. ]
  1254. },
  1255. "components":[],
  1256. "child":[
  1257. {
  1258. "type":"Sprite3D",
  1259. "props":{
  1260. "name":"Bip001 R UpperArm",
  1261. "active":true,
  1262. "isStatic":false,
  1263. "layer":9,
  1264. "position":[
  1265. 0.04234781,
  1266. 0,
  1267. 0
  1268. ],
  1269. "rotation":[
  1270. 0.09251104,
  1271. 0.5581477,
  1272. -0.0545785,
  1273. -0.82276
  1274. ],
  1275. "scale":[
  1276. 0.9999999,
  1277. 1,
  1278. 1
  1279. ]
  1280. },
  1281. "components":[],
  1282. "child":[
  1283. {
  1284. "type":"Sprite3D",
  1285. "props":{
  1286. "name":"Bip001 R Forearm",
  1287. "active":true,
  1288. "isStatic":false,
  1289. "layer":9,
  1290. "position":[
  1291. 0.1430661,
  1292. 0,
  1293. -1.907349E-08
  1294. ],
  1295. "rotation":[
  1296. 4.129277E-09,
  1297. -3.285592E-08,
  1298. 0.3203006,
  1299. -0.9473159
  1300. ],
  1301. "scale":[
  1302. 1,
  1303. 0.9999999,
  1304. 1
  1305. ]
  1306. },
  1307. "components":[],
  1308. "child":[
  1309. {
  1310. "type":"Sprite3D",
  1311. "props":{
  1312. "name":"Bip001 R Hand",
  1313. "active":true,
  1314. "isStatic":false,
  1315. "layer":9,
  1316. "position":[
  1317. 0.130876,
  1318. -4.768371E-09,
  1319. 0
  1320. ],
  1321. "rotation":[
  1322. -0.6901446,
  1323. 0.1590351,
  1324. 0.0997365,
  1325. -0.6988998
  1326. ],
  1327. "scale":[
  1328. 0.9999999,
  1329. 0.9999999,
  1330. 1
  1331. ]
  1332. },
  1333. "components":[],
  1334. "child":[
  1335. {
  1336. "type":"Sprite3D",
  1337. "props":{
  1338. "name":"Bip001 R Finger0",
  1339. "active":true,
  1340. "isStatic":false,
  1341. "layer":9,
  1342. "position":[
  1343. 0.01991152,
  1344. 0.006874237,
  1345. 0.003393183
  1346. ],
  1347. "rotation":[
  1348. 0.6306518,
  1349. 0.3812583,
  1350. -0.06305106,
  1351. -0.6730119
  1352. ],
  1353. "scale":[
  1354. 1,
  1355. 1,
  1356. 1
  1357. ]
  1358. },
  1359. "components":[],
  1360. "child":[
  1361. {
  1362. "type":"Sprite3D",
  1363. "props":{
  1364. "name":"Bip001 R Finger01",
  1365. "active":true,
  1366. "isStatic":false,
  1367. "layer":9,
  1368. "position":[
  1369. 0.02331205,
  1370. 0,
  1371. -9.536743E-09
  1372. ],
  1373. "rotation":[
  1374. 3.469056E-09,
  1375. -2.959973E-08,
  1376. -0.1164022,
  1377. -0.9932022
  1378. ],
  1379. "scale":[
  1380. 1,
  1381. 1,
  1382. 1
  1383. ]
  1384. },
  1385. "components":[],
  1386. "child":[
  1387. {
  1388. "type":"Sprite3D",
  1389. "props":{
  1390. "name":"Bip001 R Finger0Nub",
  1391. "active":true,
  1392. "isStatic":false,
  1393. "layer":9,
  1394. "position":[
  1395. 0.02473911,
  1396. 9.536743E-09,
  1397. -9.536743E-09
  1398. ],
  1399. "rotation":[
  1400. 9.124328E-25,
  1401. -1.490116E-08,
  1402. 1,
  1403. -6.123234E-17
  1404. ],
  1405. "scale":[
  1406. -1,
  1407. -1,
  1408. -1
  1409. ]
  1410. },
  1411. "components":[],
  1412. "child":[]
  1413. }
  1414. ]
  1415. }
  1416. ]
  1417. },
  1418. {
  1419. "type":"Sprite3D",
  1420. "props":{
  1421. "name":"Bip001 R Finger1",
  1422. "active":true,
  1423. "isStatic":false,
  1424. "layer":9,
  1425. "position":[
  1426. 0.05388302,
  1427. -0.007240429,
  1428. -3.91674E-05
  1429. ],
  1430. "rotation":[
  1431. -0.004326669,
  1432. -0.007588889,
  1433. -0.4551679,
  1434. -0.8903628
  1435. ],
  1436. "scale":[
  1437. 1,
  1438. 1,
  1439. 1
  1440. ]
  1441. },
  1442. "components":[],
  1443. "child":[
  1444. {
  1445. "type":"Sprite3D",
  1446. "props":{
  1447. "name":"Bip001 R Finger11",
  1448. "active":true,
  1449. "isStatic":false,
  1450. "layer":9,
  1451. "position":[
  1452. 0.02719702,
  1453. -9.536743E-09,
  1454. -9.536743E-09
  1455. ],
  1456. "rotation":[
  1457. -0.006017765,
  1458. -0.006319697,
  1459. -0.8383268,
  1460. -0.5450982
  1461. ],
  1462. "scale":[
  1463. 0.9999999,
  1464. 1,
  1465. 0.9999999
  1466. ]
  1467. },
  1468. "components":[],
  1469. "child":[
  1470. {
  1471. "type":"Sprite3D",
  1472. "props":{
  1473. "name":"Bip001 R Finger1Nub",
  1474. "active":true,
  1475. "isStatic":false,
  1476. "layer":9,
  1477. "position":[
  1478. 0.02530763,
  1479. 0,
  1480. 9.536743E-09
  1481. ],
  1482. "rotation":[
  1483. -1.490116E-08,
  1484. -9.12433E-25,
  1485. 1,
  1486. -6.123234E-17
  1487. ],
  1488. "scale":[
  1489. -1,
  1490. -1,
  1491. -0.9999999
  1492. ]
  1493. },
  1494. "components":[],
  1495. "child":[]
  1496. }
  1497. ]
  1498. }
  1499. ]
  1500. }
  1501. ]
  1502. }
  1503. ]
  1504. }
  1505. ]
  1506. }
  1507. ]
  1508. }
  1509. ]
  1510. }
  1511. ]
  1512. }
  1513. ]
  1514. }
  1515. ]
  1516. }
  1517. ]
  1518. }
  1519. ]
  1520. },
  1521. {
  1522. "type":"SkinnedMeshSprite3D",
  1523. "props":{
  1524. "name":"hunterm_body_000",
  1525. "active":true,
  1526. "isStatic":false,
  1527. "layer":9,
  1528. "position":[
  1529. 0,
  1530. 0,
  1531. 5.887837E-10
  1532. ],
  1533. "rotation":[
  1534. 0.7071068,
  1535. 0,
  1536. 0,
  1537. -0.7071068
  1538. ],
  1539. "scale":[
  1540. 6.5,
  1541. 6.5,
  1542. 6.5
  1543. ],
  1544. "rootBone":"Bip001 Pelvis",
  1545. "boundBox":{
  1546. "min":[
  1547. -0.4021722,
  1548. -0.1288398,
  1549. -0.2105778
  1550. ],
  1551. "max":[
  1552. 0.4919163,
  1553. 0.2667571,
  1554. 0.1480637
  1555. ]
  1556. },
  1557. "boundSphere":{
  1558. "center":[
  1559. 0.04487203,
  1560. 0.06895865,
  1561. -0.03125707
  1562. ],
  1563. "radius":0.5207002
  1564. },
  1565. "materials":[
  1566. {
  1567. "type":"Laya.BlinnPhongMaterial",
  1568. "path":"Assets/GM.lmat"
  1569. }
  1570. ],
  1571. "meshPath":"Assets/Roles/run-hunterm_body_000.lm"
  1572. },
  1573. "components":[],
  1574. "child":[]
  1575. },
  1576. {
  1577. "type":"MeshSprite3D",
  1578. "props":{
  1579. "name":"bulletPos",
  1580. "active":true,
  1581. "isStatic":false,
  1582. "layer":9,
  1583. "position":[
  1584. 0,
  1585. 0.516,
  1586. 0.269
  1587. ],
  1588. "rotation":[
  1589. 0,
  1590. 0,
  1591. 0,
  1592. -1
  1593. ],
  1594. "scale":[
  1595. 0.1,
  1596. 0.1,
  1597. 0.1
  1598. ],
  1599. "meshPath":"Library/unity default resources-Sphere.lm",
  1600. "enableRender":true,
  1601. "materials":[
  1602. {
  1603. "type":"Laya.BlinnPhongMaterial",
  1604. "path":"Assets/HM.lmat"
  1605. }
  1606. ]
  1607. },
  1608. "components":[],
  1609. "child":[]
  1610. }
  1611. ]
  1612. }
  1613. ]
  1614. },
  1615. {
  1616. "type":"Sprite3D",
  1617. "props":{
  1618. "name":"Bullet",
  1619. "active":true,
  1620. "isStatic":false,
  1621. "layer":0,
  1622. "position":[
  1623. 0,
  1624. 0,
  1625. 0
  1626. ],
  1627. "rotation":[
  1628. 0,
  1629. 0,
  1630. 0,
  1631. -1
  1632. ],
  1633. "scale":[
  1634. 1,
  1635. 1,
  1636. 1
  1637. ]
  1638. },
  1639. "components":[],
  1640. "child":[]
  1641. },
  1642. {
  1643. "type":"Sprite3D",
  1644. "props":{
  1645. "name":"GameController",
  1646. "active":true,
  1647. "isStatic":false,
  1648. "layer":0,
  1649. "position":[
  1650. -2.254749,
  1651. 1.434608,
  1652. -5.209921
  1653. ],
  1654. "rotation":[
  1655. 0,
  1656. 0,
  1657. 0,
  1658. -1
  1659. ],
  1660. "scale":[
  1661. 1,
  1662. 1,
  1663. 1
  1664. ]
  1665. },
  1666. "components":[],
  1667. "child":[]
  1668. },
  1669. {
  1670. "type":"Sprite3D",
  1671. "props":{
  1672. "name":"OutFile",
  1673. "active":true,
  1674. "isStatic":false,
  1675. "layer":0,
  1676. "position":[
  1677. 0,
  1678. 0,
  1679. 0
  1680. ],
  1681. "rotation":[
  1682. 0,
  1683. 0,
  1684. 0,
  1685. -1
  1686. ],
  1687. "scale":[
  1688. 1,
  1689. 1,
  1690. 1
  1691. ]
  1692. },
  1693. "components":[],
  1694. "child":[]
  1695. },
  1696. {
  1697. "type":"Sprite3D",
  1698. "props":{
  1699. "name":"bulletR",
  1700. "active":true,
  1701. "isStatic":false,
  1702. "layer":0,
  1703. "position":[
  1704. -1.07,
  1705. 1.68,
  1706. -4.1
  1707. ],
  1708. "rotation":[
  1709. 0,
  1710. -0.7113516,
  1711. 0,
  1712. -0.7028363
  1713. ],
  1714. "scale":[
  1715. 1,
  1716. 1,
  1717. 1
  1718. ]
  1719. },
  1720. "components":[],
  1721. "child":[
  1722. {
  1723. "type":"MeshSprite3D",
  1724. "props":{
  1725. "name":"Cylinder",
  1726. "active":true,
  1727. "isStatic":false,
  1728. "layer":0,
  1729. "position":[
  1730. 0,
  1731. 0,
  1732. 0.5
  1733. ],
  1734. "rotation":[
  1735. -0.7071068,
  1736. 0,
  1737. 0,
  1738. -0.7071068
  1739. ],
  1740. "scale":[
  1741. 0.02,
  1742. 0.5,
  1743. 0.02
  1744. ],
  1745. "meshPath":"Library/unity default resources-Cylinder.lm",
  1746. "enableRender":true,
  1747. "materials":[
  1748. {
  1749. "type":"Laya.BlinnPhongMaterial",
  1750. "path":"Assets/RM.lmat"
  1751. }
  1752. ]
  1753. },
  1754. "components":[],
  1755. "child":[]
  1756. }
  1757. ]
  1758. },
  1759. {
  1760. "type":"Sprite3D",
  1761. "props":{
  1762. "name":"bulletG",
  1763. "active":true,
  1764. "isStatic":false,
  1765. "layer":0,
  1766. "position":[
  1767. -1.1,
  1768. 1.68,
  1769. -6.49
  1770. ],
  1771. "rotation":[
  1772. 0,
  1773. -0.7113516,
  1774. 0,
  1775. -0.7028363
  1776. ],
  1777. "scale":[
  1778. 1,
  1779. 1,
  1780. 1
  1781. ]
  1782. },
  1783. "components":[],
  1784. "child":[
  1785. {
  1786. "type":"MeshSprite3D",
  1787. "props":{
  1788. "name":"Cylinder",
  1789. "active":true,
  1790. "isStatic":false,
  1791. "layer":0,
  1792. "position":[
  1793. 0,
  1794. 0,
  1795. 0.5
  1796. ],
  1797. "rotation":[
  1798. -0.7071068,
  1799. 0,
  1800. 0,
  1801. -0.7071068
  1802. ],
  1803. "scale":[
  1804. 0.02,
  1805. 0.5,
  1806. 0.02
  1807. ],
  1808. "meshPath":"Library/unity default resources-Cylinder.lm",
  1809. "enableRender":true,
  1810. "materials":[
  1811. {
  1812. "type":"Laya.BlinnPhongMaterial",
  1813. "path":"Assets/GM.lmat"
  1814. }
  1815. ]
  1816. },
  1817. "components":[],
  1818. "child":[]
  1819. }
  1820. ]
  1821. }
  1822. ]
  1823. }
  1824. }