enemy.lh 89 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706
  1. {
  2. "version":"LAYAHIERARCHY:02",
  3. "data":{
  4. "type":"Sprite3D",
  5. "instanceID":552,
  6. "props":{
  7. "name":"enemy",
  8. "active":true,
  9. "isStatic":false,
  10. "layer":0,
  11. "position":[
  12. -7.16,
  13. 0,
  14. 0
  15. ],
  16. "rotation":[
  17. 0,
  18. 0,
  19. 0,
  20. -1
  21. ],
  22. "scale":[
  23. 1,
  24. 1,
  25. 1
  26. ]
  27. },
  28. "components":[],
  29. "child":[
  30. {
  31. "type":"Sprite3D",
  32. "instanceID":553,
  33. "props":{
  34. "name":"enemy1",
  35. "active":true,
  36. "isStatic":false,
  37. "layer":0,
  38. "position":[
  39. 0,
  40. 0,
  41. 0
  42. ],
  43. "rotation":[
  44. 0,
  45. 0,
  46. 0,
  47. -1
  48. ],
  49. "scale":[
  50. 1,
  51. 1,
  52. 1
  53. ]
  54. },
  55. "components":[],
  56. "child":[
  57. {
  58. "type":"Sprite3D",
  59. "instanceID":554,
  60. "props":{
  61. "name":"boss",
  62. "active":true,
  63. "isStatic":false,
  64. "layer":0,
  65. "position":[
  66. 0,
  67. 0,
  68. 0
  69. ],
  70. "rotation":[
  71. 0,
  72. 0,
  73. 0,
  74. -1
  75. ],
  76. "scale":[
  77. 1,
  78. 1,
  79. 1
  80. ]
  81. },
  82. "components":[
  83. {
  84. "type":"Animator",
  85. "layers":[
  86. {
  87. "name":"Base Layer",
  88. "weight":0,
  89. "blendingMode":0,
  90. "states":[
  91. {
  92. "name":"warrioridle",
  93. "clipPath":"Assets/import/nijia/boss-warrioridle.lani"
  94. },
  95. {
  96. "name":"attack",
  97. "clipPath":"Assets/import/nijia/boss-attack.lani"
  98. },
  99. {
  100. "name":"chuiboosattack",
  101. "clipPath":"Assets/import/nijia/boss-chuiboosattack.lani"
  102. },
  103. {
  104. "name":"chuiboosprovocation",
  105. "clipPath":"Assets/import/nijia/boss-chuiboosprovocation.lani"
  106. },
  107. {
  108. "name":"darts",
  109. "clipPath":"Assets/import/nijia/boss-darts.lani"
  110. },
  111. {
  112. "name":"dartsboosprovocation",
  113. "clipPath":"Assets/import/nijia/boss-dartsboosprovocation.lani"
  114. },
  115. {
  116. "name":"dartsidle",
  117. "clipPath":"Assets/import/nijia/boss-dartsidle.lani"
  118. },
  119. {
  120. "name":"gunboosprovocation",
  121. "clipPath":"Assets/import/nijia/boss-gunboosprovocation.lani"
  122. },
  123. {
  124. "name":"gunidle",
  125. "clipPath":"Assets/import/nijia/boss-gunidle.lani"
  126. },
  127. {
  128. "name":"paoboosattack",
  129. "clipPath":"Assets/import/nijia/boss-paoboosattack.lani"
  130. },
  131. {
  132. "name":"paoboosidle",
  133. "clipPath":"Assets/import/nijia/boss-paoboosidle.lani"
  134. },
  135. {
  136. "name":"paoboosprovocation",
  137. "clipPath":"Assets/import/nijia/boss-paoboosprovocation.lani"
  138. },
  139. {
  140. "name":"run",
  141. "clipPath":"Assets/import/nijia/boss-run.lani"
  142. },
  143. {
  144. "name":"shoot",
  145. "clipPath":"Assets/import/nijia/boss-shoot.lani"
  146. },
  147. {
  148. "name":"die",
  149. "clipPath":"Assets/import/nijia/boy-die.lani"
  150. }
  151. ]
  152. }
  153. ],
  154. "cullingMode":0,
  155. "playOnWake":true
  156. }
  157. ],
  158. "child":[
  159. {
  160. "type":"Sprite3D",
  161. "instanceID":555,
  162. "props":{
  163. "name":"Bip001",
  164. "active":true,
  165. "isStatic":false,
  166. "layer":0,
  167. "position":[
  168. -0.01495362,
  169. 0.8639947,
  170. -4.88343E-05
  171. ],
  172. "rotation":[
  173. 0.4615295,
  174. 0.5126605,
  175. 0.5399292,
  176. -0.4823342
  177. ],
  178. "scale":[
  179. 1,
  180. 1,
  181. 1
  182. ]
  183. },
  184. "components":[],
  185. "child":[
  186. {
  187. "type":"Sprite3D",
  188. "instanceID":556,
  189. "props":{
  190. "name":"Bip001 Footsteps",
  191. "active":true,
  192. "isStatic":false,
  193. "layer":0,
  194. "position":[
  195. 0.04095178,
  196. 0.007793831,
  197. -0.8586558
  198. ],
  199. "rotation":[
  200. 0.01471111,
  201. 0.01928195,
  202. -0.7442933,
  203. -0.6674124
  204. ],
  205. "scale":[
  206. 1,
  207. 1,
  208. 1
  209. ]
  210. },
  211. "components":[],
  212. "child":[]
  213. },
  214. {
  215. "type":"Sprite3D",
  216. "instanceID":557,
  217. "props":{
  218. "name":"Bip001 Pelvis",
  219. "active":true,
  220. "isStatic":false,
  221. "layer":0,
  222. "position":[
  223. 0,
  224. 0,
  225. 0
  226. ],
  227. "rotation":[
  228. 0.4999997,
  229. 0.5000004,
  230. 0.4999997,
  231. -0.5000004
  232. ],
  233. "scale":[
  234. 1,
  235. 1,
  236. 1
  237. ]
  238. },
  239. "components":[],
  240. "child":[
  241. {
  242. "type":"Sprite3D",
  243. "instanceID":558,
  244. "props":{
  245. "name":"Bip001 Spine",
  246. "active":true,
  247. "isStatic":false,
  248. "layer":0,
  249. "position":[
  250. 0.1100754,
  251. 0.01314819,
  252. -2.671984E-05
  253. ],
  254. "rotation":[
  255. -0.07404681,
  256. 3.017417E-05,
  257. -0.0003971175,
  258. -0.9972547
  259. ],
  260. "scale":[
  261. 1,
  262. 1,
  263. 1
  264. ]
  265. },
  266. "components":[],
  267. "child":[
  268. {
  269. "type":"Sprite3D",
  270. "instanceID":559,
  271. "props":{
  272. "name":"Bip001 L Thigh",
  273. "active":true,
  274. "isStatic":false,
  275. "layer":0,
  276. "position":[
  277. -0.1100703,
  278. 0.006379849,
  279. 0.1311636
  280. ],
  281. "rotation":[
  282. 0.2436457,
  283. 0.9621015,
  284. -0.09194402,
  285. -0.08089428
  286. ],
  287. "scale":[
  288. 1,
  289. 0.9999999,
  290. 1
  291. ]
  292. },
  293. "components":[],
  294. "child":[
  295. {
  296. "type":"Sprite3D",
  297. "instanceID":560,
  298. "props":{
  299. "name":"Bip001 L Calf",
  300. "active":true,
  301. "isStatic":false,
  302. "layer":0,
  303. "position":[
  304. 0.4418859,
  305. 0,
  306. -2.422333E-08
  307. ],
  308. "rotation":[
  309. 5.033415E-09,
  310. 1.411969E-08,
  311. 0.2313798,
  312. -0.9728635
  313. ],
  314. "scale":[
  315. 0.9999999,
  316. 1,
  317. 1
  318. ]
  319. },
  320. "components":[],
  321. "child":[
  322. {
  323. "type":"Sprite3D",
  324. "instanceID":561,
  325. "props":{
  326. "name":"Bip001 L Foot",
  327. "active":true,
  328. "isStatic":false,
  329. "layer":0,
  330. "position":[
  331. 0.334858,
  332. 1.211166E-08,
  333. 0
  334. ],
  335. "rotation":[
  336. 0.05615929,
  337. 0.09886846,
  338. -0.0111872,
  339. -0.9934516
  340. ],
  341. "scale":[
  342. 1,
  343. 1,
  344. 1
  345. ]
  346. },
  347. "components":[],
  348. "child":[
  349. {
  350. "type":"Sprite3D",
  351. "instanceID":562,
  352. "props":{
  353. "name":"Bip001 L Toe0",
  354. "active":true,
  355. "isStatic":false,
  356. "layer":0,
  357. "position":[
  358. 0.1361558,
  359. 0.1416621,
  360. -2.422333E-08
  361. ],
  362. "rotation":[
  363. 5.865104E-07,
  364. 3.031494E-07,
  365. -0.6901804,
  366. -0.7236373
  367. ],
  368. "scale":[
  369. 0.9999999,
  370. 0.9999999,
  371. 1
  372. ]
  373. },
  374. "components":[],
  375. "child":[
  376. {
  377. "type":"Sprite3D",
  378. "instanceID":563,
  379. "props":{
  380. "name":"Bip001 L Toe0Nub",
  381. "active":true,
  382. "isStatic":false,
  383. "layer":0,
  384. "position":[
  385. 0.01435763,
  386. 0,
  387. 0
  388. ],
  389. "rotation":[
  390. -2.255547E-10,
  391. -4.201283E-19,
  392. 1,
  393. -1.862645E-09
  394. ],
  395. "scale":[
  396. -1,
  397. -1,
  398. -1
  399. ]
  400. },
  401. "components":[],
  402. "child":[]
  403. }
  404. ]
  405. }
  406. ]
  407. }
  408. ]
  409. }
  410. ]
  411. },
  412. {
  413. "type":"Sprite3D",
  414. "instanceID":564,
  415. "props":{
  416. "name":"Bip001 R Thigh",
  417. "active":true,
  418. "isStatic":false,
  419. "layer":0,
  420. "position":[
  421. -0.1101009,
  422. -0.03220454,
  423. -0.1272268
  424. ],
  425. "rotation":[
  426. 0.07272933,
  427. 0.9883125,
  428. -0.06213548,
  429. 0.1186929
  430. ],
  431. "scale":[
  432. 0.9999999,
  433. 1,
  434. 0.9999999
  435. ]
  436. },
  437. "components":[],
  438. "child":[
  439. {
  440. "type":"Sprite3D",
  441. "instanceID":565,
  442. "props":{
  443. "name":"Bip001 R Calf",
  444. "active":true,
  445. "isStatic":false,
  446. "layer":0,
  447. "position":[
  448. 0.441886,
  449. -6.055832E-09,
  450. -2.422333E-08
  451. ],
  452. "rotation":[
  453. 3.024402E-09,
  454. -1.638318E-08,
  455. 0.2774114,
  456. -0.9607512
  457. ],
  458. "scale":[
  459. 1,
  460. 1,
  461. 0.9999999
  462. ]
  463. },
  464. "components":[],
  465. "child":[
  466. {
  467. "type":"Sprite3D",
  468. "instanceID":566,
  469. "props":{
  470. "name":"Bip001 R Foot",
  471. "active":true,
  472. "isStatic":false,
  473. "layer":0,
  474. "position":[
  475. 0.3348579,
  476. -2.422333E-08,
  477. 2.422333E-08
  478. ],
  479. "rotation":[
  480. 0.07600401,
  481. -0.1003176,
  482. -0.2029958,
  483. -0.9710574
  484. ],
  485. "scale":[
  486. 0.9999999,
  487. 0.9999999,
  488. 1
  489. ]
  490. },
  491. "components":[],
  492. "child":[
  493. {
  494. "type":"Sprite3D",
  495. "instanceID":567,
  496. "props":{
  497. "name":"Bip001 R Toe0",
  498. "active":true,
  499. "isStatic":false,
  500. "layer":0,
  501. "position":[
  502. 0.1361558,
  503. 0.1416621,
  504. -2.422333E-08
  505. ],
  506. "rotation":[
  507. 1.156723E-07,
  508. 4.658224E-07,
  509. -0.7071067,
  510. -0.7071069
  511. ],
  512. "scale":[
  513. 1,
  514. 1,
  515. 1
  516. ]
  517. },
  518. "components":[],
  519. "child":[
  520. {
  521. "type":"Sprite3D",
  522. "instanceID":568,
  523. "props":{
  524. "name":"Bip001 R Toe0Nub",
  525. "active":true,
  526. "isStatic":false,
  527. "layer":0,
  528. "position":[
  529. 0.01435764,
  530. 0,
  531. 0
  532. ],
  533. "rotation":[
  534. 5.827585E-19,
  535. -3.128661E-10,
  536. -1.862645E-09,
  537. -1
  538. ],
  539. "scale":[
  540. 1,
  541. 1,
  542. 1
  543. ]
  544. },
  545. "components":[],
  546. "child":[]
  547. }
  548. ]
  549. }
  550. ]
  551. }
  552. ]
  553. }
  554. ]
  555. },
  556. {
  557. "type":"Sprite3D",
  558. "instanceID":569,
  559. "props":{
  560. "name":"Bip001 Spine1",
  561. "active":true,
  562. "isStatic":false,
  563. "layer":0,
  564. "position":[
  565. 0.2282371,
  566. -0.000317913,
  567. -7.016741E-05
  568. ],
  569. "rotation":[
  570. -0.1084027,
  571. 8.631823E-05,
  572. -1.070818E-09,
  573. -0.9941071
  574. ],
  575. "scale":[
  576. 0.9999999,
  577. 0.9999999,
  578. 1
  579. ]
  580. },
  581. "components":[],
  582. "child":[
  583. {
  584. "type":"Sprite3D",
  585. "instanceID":570,
  586. "props":{
  587. "name":"Bip001 Neck",
  588. "active":true,
  589. "isStatic":false,
  590. "layer":0,
  591. "position":[
  592. 0.4088501,
  593. -0.00152336,
  594. -7.56979E-10
  595. ],
  596. "rotation":[
  597. -9.48785E-09,
  598. 4.656613E-10,
  599. -4.418125E-18,
  600. -1
  601. ],
  602. "scale":[
  603. 0.9999999,
  604. 0.9999999,
  605. 1
  606. ]
  607. },
  608. "components":[],
  609. "child":[
  610. {
  611. "type":"Sprite3D",
  612. "instanceID":571,
  613. "props":{
  614. "name":"Bip001 Head",
  615. "active":true,
  616. "isStatic":false,
  617. "layer":0,
  618. "position":[
  619. 0.07176025,
  620. -0.03511823,
  621. -5.147457E-08
  622. ],
  623. "rotation":[
  624. 0.08276394,
  625. -0.003284633,
  626. -0.0387271,
  627. -0.995811
  628. ],
  629. "scale":[
  630. 1,
  631. 0.9999999,
  632. 0.9999999
  633. ]
  634. },
  635. "components":[],
  636. "child":[
  637. {
  638. "type":"Sprite3D",
  639. "instanceID":572,
  640. "props":{
  641. "name":"Bip001 HeadNub",
  642. "active":true,
  643. "isStatic":false,
  644. "layer":0,
  645. "position":[
  646. 0.7254755,
  647. 1.211166E-08,
  648. 0
  649. ],
  650. "rotation":[
  651. -1.266017E-09,
  652. 3.201422E-10,
  653. -4.053053E-19,
  654. -1
  655. ],
  656. "scale":[
  657. 0.9999999,
  658. 0.9999999,
  659. 0.9999999
  660. ]
  661. },
  662. "components":[],
  663. "child":[
  664. {
  665. "type":"MeshSprite3D",
  666. "instanceID":573,
  667. "props":{
  668. "name":"boss_mask1",
  669. "active":false,
  670. "isStatic":false,
  671. "layer":0,
  672. "position":[
  673. -0.3009997,
  674. 0.2219998,
  675. 0.082
  676. ],
  677. "rotation":[
  678. 0.7071069,
  679. 5.507924E-08,
  680. 0.7071066,
  681. 3.043558E-08
  682. ],
  683. "scale":[
  684. 1,
  685. 1,
  686. 1
  687. ],
  688. "meshPath":"Assets/import/prop/boss_mask1-boss_mask1.lm",
  689. "enableRender":true,
  690. "materials":[
  691. {
  692. "path":"Assets/import/prop/Materials/PolygonBattleRoyale_Texture_01_A.lmat"
  693. }
  694. ]
  695. },
  696. "components":[],
  697. "child":[]
  698. },
  699. {
  700. "type":"MeshSprite3D",
  701. "instanceID":574,
  702. "props":{
  703. "name":"boss_mask2",
  704. "active":false,
  705. "isStatic":false,
  706. "layer":0,
  707. "position":[
  708. -0.2249995,
  709. 0,
  710. 0
  711. ],
  712. "rotation":[
  713. 0.7071069,
  714. 5.507924E-08,
  715. 0.7071066,
  716. 3.043558E-08
  717. ],
  718. "scale":[
  719. 1,
  720. 1,
  721. 1
  722. ],
  723. "meshPath":"Assets/import/prop/boss_mask2-boss_mask2.lm",
  724. "enableRender":true,
  725. "materials":[
  726. {
  727. "path":"Assets/import/prop/Materials/PolygonBattleRoyale_Texture_01_A.lmat"
  728. }
  729. ]
  730. },
  731. "components":[],
  732. "child":[]
  733. },
  734. {
  735. "type":"MeshSprite3D",
  736. "instanceID":575,
  737. "props":{
  738. "name":"boss_mask3",
  739. "active":false,
  740. "isStatic":false,
  741. "layer":0,
  742. "position":[
  743. -0.3069996,
  744. 0.3149998,
  745. 0
  746. ],
  747. "rotation":[
  748. 0.7071069,
  749. 5.507924E-08,
  750. 0.7071066,
  751. 3.043558E-08
  752. ],
  753. "scale":[
  754. 1,
  755. 1,
  756. 1
  757. ],
  758. "meshPath":"Assets/import/prop/boss_mask3-boss_mask3.lm",
  759. "enableRender":true,
  760. "materials":[
  761. {
  762. "path":"Assets/import/prop/Materials/PolygonBattleRoyale_Texture_01_A.lmat"
  763. }
  764. ]
  765. },
  766. "components":[],
  767. "child":[]
  768. },
  769. {
  770. "type":"MeshSprite3D",
  771. "instanceID":576,
  772. "props":{
  773. "name":"boss_mask4",
  774. "active":false,
  775. "isStatic":false,
  776. "layer":0,
  777. "position":[
  778. -0.5399997,
  779. 0,
  780. 0
  781. ],
  782. "rotation":[
  783. 0.7071069,
  784. 5.507924E-08,
  785. 0.7071066,
  786. 3.043558E-08
  787. ],
  788. "scale":[
  789. 1,
  790. 1,
  791. 1
  792. ],
  793. "meshPath":"Assets/import/prop/boss_mask4-boss_mask4.lm",
  794. "enableRender":true,
  795. "materials":[
  796. {
  797. "path":"Assets/import/prop/Materials/boss_mask.lmat"
  798. }
  799. ]
  800. },
  801. "components":[],
  802. "child":[]
  803. },
  804. {
  805. "type":"MeshSprite3D",
  806. "instanceID":577,
  807. "props":{
  808. "name":"boss_mask5",
  809. "active":false,
  810. "isStatic":false,
  811. "layer":0,
  812. "position":[
  813. -0.4519996,
  814. 0.1299998,
  815. 0
  816. ],
  817. "rotation":[
  818. 0.7071069,
  819. 5.507924E-08,
  820. 0.7071066,
  821. 3.043558E-08
  822. ],
  823. "scale":[
  824. 1,
  825. 1,
  826. 1
  827. ],
  828. "meshPath":"Assets/import/prop/boss_mask5-boss_mask5.lm",
  829. "enableRender":true,
  830. "materials":[
  831. {
  832. "path":"Assets/import/prop/Materials/boss_mask.lmat"
  833. }
  834. ]
  835. },
  836. "components":[],
  837. "child":[]
  838. }
  839. ]
  840. }
  841. ]
  842. },
  843. {
  844. "type":"Sprite3D",
  845. "instanceID":578,
  846. "props":{
  847. "name":"Bip001 L Clavicle",
  848. "active":true,
  849. "isStatic":false,
  850. "layer":0,
  851. "position":[
  852. -0.08806749,
  853. -0.06957286,
  854. 0.1528392
  855. ],
  856. "rotation":[
  857. -0.7071068,
  858. 0.0002815294,
  859. -0.7071068,
  860. -0.0002815294
  861. ],
  862. "scale":[
  863. 0.9999999,
  864. 0.9999999,
  865. 0.9999999
  866. ]
  867. },
  868. "components":[],
  869. "child":[
  870. {
  871. "type":"Sprite3D",
  872. "instanceID":579,
  873. "props":{
  874. "name":"Bip001 L UpperArm",
  875. "active":true,
  876. "isStatic":false,
  877. "layer":0,
  878. "position":[
  879. 0.1244329,
  880. 1.211166E-08,
  881. 0
  882. ],
  883. "rotation":[
  884. -0.0807358,
  885. -0.3845504,
  886. 0.6300297,
  887. -0.6698248
  888. ],
  889. "scale":[
  890. 1,
  891. 1,
  892. 1
  893. ]
  894. },
  895. "components":[],
  896. "child":[
  897. {
  898. "type":"Sprite3D",
  899. "instanceID":580,
  900. "props":{
  901. "name":"Bip001 L Forearm",
  902. "active":true,
  903. "isStatic":false,
  904. "layer":0,
  905. "position":[
  906. 0.3610564,
  907. -2.422333E-08,
  908. 0
  909. ],
  910. "rotation":[
  911. 5.482147E-08,
  912. 3.148666E-08,
  913. 0.2609955,
  914. -0.96534
  915. ],
  916. "scale":[
  917. 0.9999999,
  918. 0.9999999,
  919. 1
  920. ]
  921. },
  922. "components":[],
  923. "child":[
  924. {
  925. "type":"Sprite3D",
  926. "instanceID":581,
  927. "props":{
  928. "name":"Bip001 L Hand",
  929. "active":true,
  930. "isStatic":false,
  931. "layer":0,
  932. "position":[
  933. 0.3326436,
  934. -4.844665E-08,
  935. 0
  936. ],
  937. "rotation":[
  938. 0.7970539,
  939. 0.11437,
  940. -0.05000184,
  941. -0.5908676
  942. ],
  943. "scale":[
  944. 0.9999999,
  945. 0.9999999,
  946. 0.9999999
  947. ]
  948. },
  949. "components":[],
  950. "child":[
  951. {
  952. "type":"Sprite3D",
  953. "instanceID":582,
  954. "props":{
  955. "name":"Bip001 L Finger0",
  956. "active":true,
  957. "isStatic":false,
  958. "layer":0,
  959. "position":[
  960. 0.04592988,
  961. 0.05162834,
  962. -0.1345188
  963. ],
  964. "rotation":[
  965. -0.6620291,
  966. -0.4407398,
  967. 0.03774102,
  968. -0.6050137
  969. ],
  970. "scale":[
  971. 0.9999999,
  972. 1,
  973. 1
  974. ]
  975. },
  976. "components":[],
  977. "child":[
  978. {
  979. "type":"Sprite3D",
  980. "instanceID":583,
  981. "props":{
  982. "name":"Bip001 L Finger01",
  983. "active":true,
  984. "isStatic":false,
  985. "layer":0,
  986. "position":[
  987. 0.09051713,
  988. -9.689331E-08,
  989. 0
  990. ],
  991. "rotation":[
  992. -0.1327531,
  993. -0.02347187,
  994. -0.1725187,
  995. -0.9757372
  996. ],
  997. "scale":[
  998. 1,
  999. 1,
  1000. 1
  1001. ]
  1002. },
  1003. "components":[],
  1004. "child":[
  1005. {
  1006. "type":"Sprite3D",
  1007. "instanceID":584,
  1008. "props":{
  1009. "name":"Bip001 L Finger0Nub",
  1010. "active":true,
  1011. "isStatic":false,
  1012. "layer":0,
  1013. "position":[
  1014. 0.09053599,
  1015. -4.844665E-08,
  1016. 0
  1017. ],
  1018. "rotation":[
  1019. 0,
  1020. 1.490116E-08,
  1021. 0,
  1022. -1
  1023. ],
  1024. "scale":[
  1025. 1,
  1026. 1,
  1027. 1
  1028. ]
  1029. },
  1030. "components":[],
  1031. "child":[]
  1032. }
  1033. ]
  1034. }
  1035. ]
  1036. },
  1037. {
  1038. "type":"Sprite3D",
  1039. "instanceID":585,
  1040. "props":{
  1041. "name":"Bip001 L Finger1",
  1042. "active":true,
  1043. "isStatic":false,
  1044. "layer":0,
  1045. "position":[
  1046. 0.1926583,
  1047. -9.185485E-05,
  1048. -0.1152864
  1049. ],
  1050. "rotation":[
  1051. -0.1120009,
  1052. -0.1014467,
  1053. -0.7343396,
  1054. -0.6617475
  1055. ],
  1056. "scale":[
  1057. 1,
  1058. 1,
  1059. 0.9999999
  1060. ]
  1061. },
  1062. "components":[],
  1063. "child":[
  1064. {
  1065. "type":"Sprite3D",
  1066. "instanceID":586,
  1067. "props":{
  1068. "name":"Bip001 L Finger11",
  1069. "active":true,
  1070. "isStatic":false,
  1071. "layer":0,
  1072. "position":[
  1073. 0.09784713,
  1074. -2.422333E-08,
  1075. 9.689331E-08
  1076. ],
  1077. "rotation":[
  1078. -1.954485E-08,
  1079. -2.673127E-08,
  1080. -0.4692067,
  1081. -0.8830884
  1082. ],
  1083. "scale":[
  1084. 0.9999999,
  1085. 1,
  1086. 0.9999999
  1087. ]
  1088. },
  1089. "components":[],
  1090. "child":[
  1091. {
  1092. "type":"Sprite3D",
  1093. "instanceID":587,
  1094. "props":{
  1095. "name":"Bip001 L Finger1Nub",
  1096. "active":true,
  1097. "isStatic":false,
  1098. "layer":0,
  1099. "position":[
  1100. 0.08497378,
  1101. 0,
  1102. 0
  1103. ],
  1104. "rotation":[
  1105. -2.980233E-08,
  1106. -3.259629E-09,
  1107. 1.862645E-09,
  1108. -1
  1109. ],
  1110. "scale":[
  1111. 1,
  1112. 0.9999999,
  1113. 0.9999999
  1114. ]
  1115. },
  1116. "components":[],
  1117. "child":[]
  1118. }
  1119. ]
  1120. }
  1121. ]
  1122. },
  1123. {
  1124. "type":"Sprite3D",
  1125. "instanceID":588,
  1126. "props":{
  1127. "name":"Bip001 L Finger2",
  1128. "active":true,
  1129. "isStatic":false,
  1130. "layer":0,
  1131. "position":[
  1132. 0.2190966,
  1133. 4.360199E-06,
  1134. 0.005550921
  1135. ],
  1136. "rotation":[
  1137. -0.01310218,
  1138. -0.01378077,
  1139. -0.7039282,
  1140. -0.7100165
  1141. ],
  1142. "scale":[
  1143. 1,
  1144. 1,
  1145. 1
  1146. ]
  1147. },
  1148. "components":[],
  1149. "child":[
  1150. {
  1151. "type":"Sprite3D",
  1152. "instanceID":589,
  1153. "props":{
  1154. "name":"Bip001 L Finger21",
  1155. "active":true,
  1156. "isStatic":false,
  1157. "layer":0,
  1158. "position":[
  1159. 0.08980111,
  1160. -4.844665E-08,
  1161. 0
  1162. ],
  1163. "rotation":[
  1164. 2.671456E-09,
  1165. 2.673029E-08,
  1166. -0.4692067,
  1167. -0.8830884
  1168. ],
  1169. "scale":[
  1170. 1,
  1171. 1,
  1172. 1
  1173. ]
  1174. },
  1175. "components":[],
  1176. "child":[
  1177. {
  1178. "type":"Sprite3D",
  1179. "instanceID":590,
  1180. "props":{
  1181. "name":"Bip001 L Finger2Nub",
  1182. "active":true,
  1183. "isStatic":false,
  1184. "layer":0,
  1185. "position":[
  1186. 0.08684877,
  1187. 0,
  1188. 0
  1189. ],
  1190. "rotation":[
  1191. -1.490116E-08,
  1192. 5.551116E-17,
  1193. 3.725291E-09,
  1194. -1
  1195. ],
  1196. "scale":[
  1197. 0.9999999,
  1198. 1,
  1199. 1
  1200. ]
  1201. },
  1202. "components":[],
  1203. "child":[]
  1204. }
  1205. ]
  1206. }
  1207. ]
  1208. },
  1209. {
  1210. "type":"Sprite3D",
  1211. "instanceID":591,
  1212. "props":{
  1213. "name":"Bip001 L Finger3",
  1214. "active":true,
  1215. "isStatic":false,
  1216. "layer":0,
  1217. "position":[
  1218. 0.2011745,
  1219. 0.02645362,
  1220. 0.1217923
  1221. ],
  1222. "rotation":[
  1223. 0.04285579,
  1224. 0.03415127,
  1225. -0.7427883,
  1226. -0.66728
  1227. ],
  1228. "scale":[
  1229. 1,
  1230. 1,
  1231. 0.9999999
  1232. ]
  1233. },
  1234. "components":[],
  1235. "child":[
  1236. {
  1237. "type":"Sprite3D",
  1238. "instanceID":592,
  1239. "props":{
  1240. "name":"Bip001 L Finger31",
  1241. "active":true,
  1242. "isStatic":false,
  1243. "layer":0,
  1244. "position":[
  1245. 0.08568353,
  1246. 4.844665E-08,
  1247. 4.844665E-08
  1248. ],
  1249. "rotation":[
  1250. -2.991621E-08,
  1251. -6.97927E-09,
  1252. -0.456603,
  1253. -0.8896706
  1254. ],
  1255. "scale":[
  1256. 1,
  1257. 0.9999999,
  1258. 0.9999999
  1259. ]
  1260. },
  1261. "components":[],
  1262. "child":[
  1263. {
  1264. "type":"Sprite3D",
  1265. "instanceID":593,
  1266. "props":{
  1267. "name":"Bip001 L Finger3Nub",
  1268. "active":true,
  1269. "isStatic":false,
  1270. "layer":0,
  1271. "position":[
  1272. 0.07275929,
  1273. 4.844665E-08,
  1274. -9.689331E-08
  1275. ],
  1276. "rotation":[
  1277. -1.490116E-08,
  1278. 1.490116E-08,
  1279. -2.235174E-08,
  1280. -1
  1281. ],
  1282. "scale":[
  1283. 1,
  1284. 0.9999999,
  1285. 0.9999999
  1286. ]
  1287. },
  1288. "components":[],
  1289. "child":[]
  1290. }
  1291. ]
  1292. }
  1293. ]
  1294. }
  1295. ]
  1296. }
  1297. ]
  1298. }
  1299. ]
  1300. }
  1301. ]
  1302. },
  1303. {
  1304. "type":"Sprite3D",
  1305. "instanceID":594,
  1306. "props":{
  1307. "name":"Bip001 R Clavicle",
  1308. "active":true,
  1309. "isStatic":false,
  1310. "layer":0,
  1311. "position":[
  1312. -0.08806749,
  1313. -0.06957202,
  1314. -0.1528396
  1315. ],
  1316. "rotation":[
  1317. -0.7071068,
  1318. 0.0002815294,
  1319. 0.7071068,
  1320. 0.0002815294
  1321. ],
  1322. "scale":[
  1323. 0.9999999,
  1324. 0.9999999,
  1325. 0.9999999
  1326. ]
  1327. },
  1328. "components":[],
  1329. "child":[
  1330. {
  1331. "type":"Sprite3D",
  1332. "instanceID":595,
  1333. "props":{
  1334. "name":"Bip001 R UpperArm",
  1335. "active":true,
  1336. "isStatic":false,
  1337. "layer":0,
  1338. "position":[
  1339. 0.1244329,
  1340. 1.211166E-08,
  1341. -9.689331E-08
  1342. ],
  1343. "rotation":[
  1344. -0.0760611,
  1345. 0.3793761,
  1346. 0.4555449,
  1347. -0.8017278
  1348. ],
  1349. "scale":[
  1350. 1,
  1351. 1,
  1352. 1
  1353. ]
  1354. },
  1355. "components":[],
  1356. "child":[
  1357. {
  1358. "type":"Sprite3D",
  1359. "instanceID":596,
  1360. "props":{
  1361. "name":"Bip001 R Forearm",
  1362. "active":true,
  1363. "isStatic":false,
  1364. "layer":0,
  1365. "position":[
  1366. 0.3610564,
  1367. -4.844665E-08,
  1368. 0
  1369. ],
  1370. "rotation":[
  1371. 7.1036E-09,
  1372. 1.414943E-08,
  1373. 0.4486725,
  1374. -0.8936962
  1375. ],
  1376. "scale":[
  1377. 0.9999999,
  1378. 0.9999999,
  1379. 0.9999999
  1380. ]
  1381. },
  1382. "components":[],
  1383. "child":[
  1384. {
  1385. "type":"Sprite3D",
  1386. "instanceID":597,
  1387. "props":{
  1388. "name":"Bip001 R Hand",
  1389. "active":true,
  1390. "isStatic":false,
  1391. "layer":0,
  1392. "position":[
  1393. 0.3326436,
  1394. 0,
  1395. -9.689331E-08
  1396. ],
  1397. "rotation":[
  1398. -0.9731162,
  1399. 0.2073372,
  1400. -0.06521925,
  1401. -0.07617445
  1402. ],
  1403. "scale":[
  1404. 1,
  1405. 1,
  1406. 0.9999999
  1407. ]
  1408. },
  1409. "components":[],
  1410. "child":[
  1411. {
  1412. "type":"Sprite3D",
  1413. "instanceID":598,
  1414. "props":{
  1415. "name":"weapon",
  1416. "active":true,
  1417. "isStatic":false,
  1418. "layer":0,
  1419. "position":[
  1420. 0.1300001,
  1421. 0.08299972,
  1422. -0.1169998
  1423. ],
  1424. "rotation":[
  1425. -0.1569066,
  1426. 2.868472E-07,
  1427. 1.490115E-08,
  1428. -0.9876135
  1429. ],
  1430. "scale":[
  1431. 1,
  1432. 1,
  1433. 1
  1434. ]
  1435. },
  1436. "components":[],
  1437. "child":[
  1438. {
  1439. "type":"Sprite3D",
  1440. "instanceID":599,
  1441. "props":{
  1442. "name":"Guitar",
  1443. "active":false,
  1444. "isStatic":false,
  1445. "layer":0,
  1446. "position":[
  1447. 0,
  1448. 0,
  1449. 0
  1450. ],
  1451. "rotation":[
  1452. 0.08310796,
  1453. -0.8261185,
  1454. -0.5461599,
  1455. 0.1110438
  1456. ],
  1457. "scale":[
  1458. 1,
  1459. 1,
  1460. 1
  1461. ]
  1462. },
  1463. "components":[],
  1464. "child":[
  1465. {
  1466. "type":"Sprite3D",
  1467. "instanceID":600,
  1468. "props":{
  1469. "name":"Guitar",
  1470. "active":true,
  1471. "isStatic":false,
  1472. "layer":0,
  1473. "position":[
  1474. 0,
  1475. 2.52,
  1476. 0
  1477. ],
  1478. "rotation":[
  1479. 0,
  1480. 0,
  1481. 1,
  1482. 0
  1483. ],
  1484. "scale":[
  1485. 1,
  1486. 1,
  1487. 1
  1488. ]
  1489. },
  1490. "components":[],
  1491. "child":[
  1492. {
  1493. "type":"MeshSprite3D",
  1494. "instanceID":601,
  1495. "props":{
  1496. "name":"Guitar",
  1497. "active":true,
  1498. "isStatic":false,
  1499. "layer":0,
  1500. "position":[
  1501. 0,
  1502. 0,
  1503. 0
  1504. ],
  1505. "rotation":[
  1506. 0.7071068,
  1507. 0,
  1508. 0,
  1509. -0.7071068
  1510. ],
  1511. "scale":[
  1512. 1,
  1513. 1,
  1514. 1
  1515. ],
  1516. "meshPath":"Assets/import/prop/Guitar-Guitar.lm",
  1517. "enableRender":true,
  1518. "materials":[
  1519. {
  1520. "path":"Assets/import/prop/Materials/Guitar.lmat"
  1521. },
  1522. {
  1523. "path":"Assets/import/prop/Materials/qiekaimian.lmat"
  1524. }
  1525. ]
  1526. },
  1527. "components":[],
  1528. "child":[]
  1529. },
  1530. {
  1531. "type":"MeshSprite3D",
  1532. "instanceID":602,
  1533. "props":{
  1534. "name":"Guitar_0",
  1535. "active":true,
  1536. "isStatic":false,
  1537. "layer":0,
  1538. "position":[
  1539. 0,
  1540. 0,
  1541. 0
  1542. ],
  1543. "rotation":[
  1544. 0.7071068,
  1545. 0,
  1546. 0,
  1547. -0.7071068
  1548. ],
  1549. "scale":[
  1550. 1,
  1551. 1,
  1552. 1
  1553. ],
  1554. "meshPath":"Assets/import/prop/Guitar-Guitar_0.lm",
  1555. "enableRender":true,
  1556. "materials":[
  1557. {
  1558. "path":"Assets/import/prop/Materials/Guitar.lmat"
  1559. },
  1560. {
  1561. "path":"Assets/import/prop/Materials/qiekaimian.lmat"
  1562. }
  1563. ]
  1564. },
  1565. "components":[],
  1566. "child":[]
  1567. }
  1568. ]
  1569. }
  1570. ]
  1571. },
  1572. {
  1573. "type":"Sprite3D",
  1574. "instanceID":603,
  1575. "props":{
  1576. "name":"Fireaxe",
  1577. "active":false,
  1578. "isStatic":false,
  1579. "layer":0,
  1580. "position":[
  1581. 0,
  1582. 0,
  1583. 0
  1584. ],
  1585. "rotation":[
  1586. 0.08310796,
  1587. -0.8261185,
  1588. -0.5461599,
  1589. 0.1110438
  1590. ],
  1591. "scale":[
  1592. 1,
  1593. 1,
  1594. 1
  1595. ]
  1596. },
  1597. "components":[],
  1598. "child":[
  1599. {
  1600. "type":"MeshSprite3D",
  1601. "instanceID":604,
  1602. "props":{
  1603. "name":"Fireaxe",
  1604. "active":true,
  1605. "isStatic":false,
  1606. "layer":0,
  1607. "position":[
  1608. 0,
  1609. 0.778,
  1610. 0
  1611. ],
  1612. "rotation":[
  1613. 0.2290454,
  1614. -0.6689829,
  1615. -0.6689832,
  1616. -0.2290452
  1617. ],
  1618. "scale":[
  1619. 1,
  1620. 1,
  1621. 1
  1622. ],
  1623. "meshPath":"Assets/import/prop/Fireaxe-Fireaxe.lm",
  1624. "enableRender":true,
  1625. "materials":[
  1626. {
  1627. "path":"Assets/import/prop/Materials/Fireaxe.lmat"
  1628. }
  1629. ]
  1630. },
  1631. "components":[],
  1632. "child":[]
  1633. }
  1634. ]
  1635. },
  1636. {
  1637. "type":"Sprite3D",
  1638. "instanceID":605,
  1639. "props":{
  1640. "name":"Chair",
  1641. "active":false,
  1642. "isStatic":false,
  1643. "layer":0,
  1644. "position":[
  1645. 0,
  1646. 0,
  1647. 0
  1648. ],
  1649. "rotation":[
  1650. 0.08310796,
  1651. -0.8261185,
  1652. -0.5461599,
  1653. 0.1110438
  1654. ],
  1655. "scale":[
  1656. 1,
  1657. 1,
  1658. 1
  1659. ]
  1660. },
  1661. "components":[],
  1662. "child":[
  1663. {
  1664. "type":"MeshSprite3D",
  1665. "instanceID":606,
  1666. "props":{
  1667. "name":"Chair",
  1668. "active":true,
  1669. "isStatic":false,
  1670. "layer":0,
  1671. "position":[
  1672. 0,
  1673. 1.595,
  1674. -0.43
  1675. ],
  1676. "rotation":[
  1677. -0.7071068,
  1678. 0,
  1679. 0,
  1680. -0.7071068
  1681. ],
  1682. "scale":[
  1683. 1,
  1684. 1,
  1685. 1
  1686. ],
  1687. "meshPath":"Assets/import/prop/Chair-Chair.lm",
  1688. "enableRender":true,
  1689. "materials":[
  1690. {
  1691. "path":"Assets/import/prop/Materials/SM_Prop_ShopInterior_Chair_01_default.lmat"
  1692. }
  1693. ]
  1694. },
  1695. "components":[],
  1696. "child":[]
  1697. }
  1698. ]
  1699. },
  1700. {
  1701. "type":"Sprite3D",
  1702. "instanceID":607,
  1703. "props":{
  1704. "name":"Pole",
  1705. "active":false,
  1706. "isStatic":false,
  1707. "layer":0,
  1708. "position":[
  1709. 0,
  1710. 0,
  1711. 0
  1712. ],
  1713. "rotation":[
  1714. 0.08310796,
  1715. -0.8261185,
  1716. -0.5461599,
  1717. 0.1110438
  1718. ],
  1719. "scale":[
  1720. 1,
  1721. 1,
  1722. 1
  1723. ]
  1724. },
  1725. "components":[],
  1726. "child":[
  1727. {
  1728. "type":"MeshSprite3D",
  1729. "instanceID":608,
  1730. "props":{
  1731. "name":"Pole",
  1732. "active":true,
  1733. "isStatic":false,
  1734. "layer":0,
  1735. "position":[
  1736. 0,
  1737. 0,
  1738. 0
  1739. ],
  1740. "rotation":[
  1741. 0.7071068,
  1742. 0,
  1743. 0,
  1744. -0.7071068
  1745. ],
  1746. "scale":[
  1747. 1,
  1748. 1,
  1749. 1
  1750. ],
  1751. "meshPath":"Assets/import/prop/Pole-Pole.lm",
  1752. "enableRender":true,
  1753. "materials":[
  1754. {
  1755. "path":"Assets/import/prop/Materials/SM_Prop_Billboard_Pole_01_default.lmat"
  1756. }
  1757. ]
  1758. },
  1759. "components":[],
  1760. "child":[]
  1761. }
  1762. ]
  1763. },
  1764. {
  1765. "type":"Sprite3D",
  1766. "instanceID":609,
  1767. "props":{
  1768. "name":"shuriken",
  1769. "active":false,
  1770. "isStatic":false,
  1771. "layer":0,
  1772. "position":[
  1773. 0.032,
  1774. 0.061,
  1775. 0.046
  1776. ],
  1777. "rotation":[
  1778. 0.1453146,
  1779. 0.03839196,
  1780. -0.005643271,
  1781. -0.9886243
  1782. ],
  1783. "scale":[
  1784. 1,
  1785. 1,
  1786. 1
  1787. ]
  1788. },
  1789. "components":[],
  1790. "child":[
  1791. {
  1792. "type":"MeshSprite3D",
  1793. "instanceID":610,
  1794. "props":{
  1795. "name":"shuriken",
  1796. "active":true,
  1797. "isStatic":false,
  1798. "layer":0,
  1799. "position":[
  1800. 0,
  1801. 0,
  1802. 0.2780003
  1803. ],
  1804. "rotation":[
  1805. 0.7071069,
  1806. -1.527368E-07,
  1807. -7.543709E-08,
  1808. -0.7071066
  1809. ],
  1810. "scale":[
  1811. 1,
  1812. 1,
  1813. 1
  1814. ],
  1815. "meshPath":"Assets/import/prop/shuriken-shuriken.lm",
  1816. "enableRender":true,
  1817. "materials":[
  1818. {
  1819. "path":"Assets/import/prop/Materials/qiekaimian.lmat"
  1820. },
  1821. {
  1822. "path":"Assets/import/prop/Materials/shuriken.lmat"
  1823. }
  1824. ]
  1825. },
  1826. "components":[],
  1827. "child":[]
  1828. },
  1829. {
  1830. "type":"MeshSprite3D",
  1831. "instanceID":611,
  1832. "props":{
  1833. "name":"shuriken_0",
  1834. "active":true,
  1835. "isStatic":false,
  1836. "layer":0,
  1837. "position":[
  1838. 0,
  1839. 0,
  1840. 0.2780003
  1841. ],
  1842. "rotation":[
  1843. 0.7071069,
  1844. -1.527368E-07,
  1845. -7.543709E-08,
  1846. -0.7071066
  1847. ],
  1848. "scale":[
  1849. 1,
  1850. 1,
  1851. 1
  1852. ],
  1853. "meshPath":"Assets/import/prop/shuriken-shuriken_0.lm",
  1854. "enableRender":true,
  1855. "materials":[
  1856. {
  1857. "path":"Assets/import/prop/Materials/shuriken.lmat"
  1858. },
  1859. {
  1860. "path":"Assets/import/prop/Materials/qiekaimian.lmat"
  1861. }
  1862. ]
  1863. },
  1864. "components":[],
  1865. "child":[]
  1866. }
  1867. ]
  1868. },
  1869. {
  1870. "type":"Sprite3D",
  1871. "instanceID":612,
  1872. "props":{
  1873. "name":"Pistol",
  1874. "active":false,
  1875. "isStatic":false,
  1876. "layer":0,
  1877. "position":[
  1878. -0.003,
  1879. 0.063,
  1880. -0.156
  1881. ],
  1882. "rotation":[
  1883. -0.5069067,
  1884. -0.5068797,
  1885. -0.4991852,
  1886. -0.4867574
  1887. ],
  1888. "scale":[
  1889. 0.8,
  1890. 0.8,
  1891. 0.8
  1892. ]
  1893. },
  1894. "components":[],
  1895. "child":[
  1896. {
  1897. "type":"MeshSprite3D",
  1898. "instanceID":613,
  1899. "props":{
  1900. "name":"Pistol",
  1901. "active":true,
  1902. "isStatic":false,
  1903. "layer":0,
  1904. "position":[
  1905. 0,
  1906. 0.531,
  1907. 0.08
  1908. ],
  1909. "rotation":[
  1910. 0.7071068,
  1911. 0,
  1912. 0,
  1913. -0.7071068
  1914. ],
  1915. "scale":[
  1916. 1,
  1917. 1,
  1918. 1
  1919. ],
  1920. "meshPath":"Assets/import/prop/Pistol-Pistol.lm",
  1921. "enableRender":true,
  1922. "materials":[
  1923. {
  1924. "path":"Assets/import/prop/Materials/SM_Wep_Pistol_Flare_01_default.lmat"
  1925. },
  1926. {
  1927. "path":"Assets/import/prop/Materials/SM_Wep_Pistol_Flare_Trigger_01_default.lmat"
  1928. },
  1929. {
  1930. "path":"Assets/import/prop/Materials/SM_Wep_Pistol_Flare_Break_01_default.lmat"
  1931. },
  1932. {
  1933. "path":"Assets/import/prop/Materials/SM_Wep_Pistol_Hammer_01_default.lmat"
  1934. }
  1935. ]
  1936. },
  1937. "components":[],
  1938. "child":[]
  1939. },
  1940. {
  1941. "type":"Sprite3D",
  1942. "instanceID":614,
  1943. "props":{
  1944. "name":"firepoint",
  1945. "active":true,
  1946. "isStatic":false,
  1947. "layer":0,
  1948. "position":[
  1949. 0,
  1950. 0.878,
  1951. 1.21
  1952. ],
  1953. "rotation":[
  1954. 0,
  1955. 0,
  1956. 0,
  1957. -1
  1958. ],
  1959. "scale":[
  1960. 1,
  1961. 1,
  1962. 1
  1963. ]
  1964. },
  1965. "components":[],
  1966. "child":[]
  1967. }
  1968. ]
  1969. },
  1970. {
  1971. "type":"Sprite3D",
  1972. "instanceID":615,
  1973. "props":{
  1974. "name":"missile",
  1975. "active":false,
  1976. "isStatic":false,
  1977. "layer":0,
  1978. "position":[
  1979. -0.063,
  1980. 0,
  1981. 0.495
  1982. ],
  1983. "rotation":[
  1984. 0.5308049,
  1985. -0.4671684,
  1986. -0.4671684,
  1987. -0.5308048
  1988. ],
  1989. "scale":[
  1990. 1,
  1991. 1,
  1992. 1
  1993. ]
  1994. },
  1995. "components":[],
  1996. "child":[
  1997. {
  1998. "type":"MeshSprite3D",
  1999. "instanceID":616,
  2000. "props":{
  2001. "name":"missile",
  2002. "active":true,
  2003. "isStatic":false,
  2004. "layer":0,
  2005. "position":[
  2006. 0,
  2007. 0,
  2008. 0
  2009. ],
  2010. "rotation":[
  2011. 0,
  2012. 0.7071068,
  2013. 0,
  2014. -0.7071068
  2015. ],
  2016. "scale":[
  2017. 1,
  2018. 1,
  2019. 1
  2020. ],
  2021. "meshPath":"Assets/import/prop/missile-missile.lm",
  2022. "enableRender":true,
  2023. "materials":[
  2024. {
  2025. "path":"Assets/import/prop/Materials/missile.lmat"
  2026. }
  2027. ]
  2028. },
  2029. "components":[],
  2030. "child":[]
  2031. }
  2032. ]
  2033. },
  2034. {
  2035. "type":"Sprite3D",
  2036. "instanceID":617,
  2037. "props":{
  2038. "name":"wtaagsg",
  2039. "active":false,
  2040. "isStatic":false,
  2041. "layer":0,
  2042. "position":[
  2043. 0,
  2044. 0,
  2045. 0
  2046. ],
  2047. "rotation":[
  2048. -0.6554862,
  2049. -0.2498584,
  2050. 0.02930625,
  2051. -0.7120743
  2052. ],
  2053. "scale":[
  2054. 1,
  2055. 1,
  2056. 1
  2057. ]
  2058. },
  2059. "components":[
  2060. {
  2061. "type":"Rigidbody3D",
  2062. "mass":1,
  2063. "isKinematic":true,
  2064. "restitution":0,
  2065. "friction":0.5,
  2066. "rollingFriction":0,
  2067. "linearDamping":0,
  2068. "angularDamping":0,
  2069. "overrideGravity":true,
  2070. "gravity":[
  2071. 0,
  2072. 0,
  2073. 0
  2074. ],
  2075. "shapes":[
  2076. {
  2077. "type":"BoxColliderShape",
  2078. "center":[
  2079. 0,
  2080. 0.52,
  2081. 0
  2082. ],
  2083. "size":[
  2084. 0.5,
  2085. 2.5,
  2086. 0.5
  2087. ]
  2088. }
  2089. ],
  2090. "isTrigger":true
  2091. }
  2092. ],
  2093. "child":[
  2094. {
  2095. "type":"MeshSprite3D",
  2096. "instanceID":618,
  2097. "props":{
  2098. "name":"PolySphere",
  2099. "active":true,
  2100. "isStatic":false,
  2101. "layer":0,
  2102. "position":[
  2103. 0,
  2104. 1.57,
  2105. 0
  2106. ],
  2107. "rotation":[
  2108. -0.7071068,
  2109. 0,
  2110. 0,
  2111. -0.7071068
  2112. ],
  2113. "scale":[
  2114. 1,
  2115. 1,
  2116. 1
  2117. ],
  2118. "meshPath":"Assets/import/prop/PolySphere-PolySphere.lm",
  2119. "enableRender":true,
  2120. "materials":[
  2121. {
  2122. "path":"Assets/import/prop/Materials/No Name.lmat"
  2123. }
  2124. ]
  2125. },
  2126. "components":[],
  2127. "child":[]
  2128. }
  2129. ]
  2130. }
  2131. ]
  2132. },
  2133. {
  2134. "type":"Sprite3D",
  2135. "instanceID":619,
  2136. "props":{
  2137. "name":"Bip001 R Finger0",
  2138. "active":true,
  2139. "isStatic":false,
  2140. "layer":0,
  2141. "position":[
  2142. 0.0459299,
  2143. 0.05162844,
  2144. 0.1345187
  2145. ],
  2146. "rotation":[
  2147. 0.6620291,
  2148. 0.4407397,
  2149. 0.03774101,
  2150. -0.6050137
  2151. ],
  2152. "scale":[
  2153. 1,
  2154. 1,
  2155. 1
  2156. ]
  2157. },
  2158. "components":[],
  2159. "child":[
  2160. {
  2161. "type":"Sprite3D",
  2162. "instanceID":620,
  2163. "props":{
  2164. "name":"Bip001 R Finger01",
  2165. "active":true,
  2166. "isStatic":false,
  2167. "layer":0,
  2168. "position":[
  2169. 0.09051715,
  2170. -9.689331E-08,
  2171. 0
  2172. ],
  2173. "rotation":[
  2174. 0.1327531,
  2175. 0.02347191,
  2176. -0.1725187,
  2177. -0.9757372
  2178. ],
  2179. "scale":[
  2180. 1,
  2181. 1,
  2182. 1
  2183. ]
  2184. },
  2185. "components":[],
  2186. "child":[
  2187. {
  2188. "type":"Sprite3D",
  2189. "instanceID":621,
  2190. "props":{
  2191. "name":"Bip001 R Finger0Nub",
  2192. "active":true,
  2193. "isStatic":false,
  2194. "layer":0,
  2195. "position":[
  2196. 0.09053604,
  2197. 0,
  2198. 0
  2199. ],
  2200. "rotation":[
  2201. 3.259629E-09,
  2202. -4.857226E-17,
  2203. 1,
  2204. 1.490116E-08
  2205. ],
  2206. "scale":[
  2207. -1,
  2208. -0.9999999,
  2209. -1
  2210. ]
  2211. },
  2212. "components":[],
  2213. "child":[]
  2214. }
  2215. ]
  2216. }
  2217. ]
  2218. },
  2219. {
  2220. "type":"Sprite3D",
  2221. "instanceID":622,
  2222. "props":{
  2223. "name":"Bip001 R Finger1",
  2224. "active":true,
  2225. "isStatic":false,
  2226. "layer":0,
  2227. "position":[
  2228. 0.1926582,
  2229. -9.170952E-05,
  2230. 0.1152863
  2231. ],
  2232. "rotation":[
  2233. 0.1120009,
  2234. 0.1014466,
  2235. -0.7343395,
  2236. -0.6617476
  2237. ],
  2238. "scale":[
  2239. 1,
  2240. 1,
  2241. 0.9999999
  2242. ]
  2243. },
  2244. "components":[],
  2245. "child":[
  2246. {
  2247. "type":"Sprite3D",
  2248. "instanceID":623,
  2249. "props":{
  2250. "name":"Bip001 R Finger11",
  2251. "active":true,
  2252. "isStatic":false,
  2253. "layer":0,
  2254. "position":[
  2255. 0.09784708,
  2256. -9.689331E-08,
  2257. 9.689331E-08
  2258. ],
  2259. "rotation":[
  2260. 4.472092E-08,
  2261. 1.110589E-08,
  2262. -0.4692067,
  2263. -0.8830884
  2264. ],
  2265. "scale":[
  2266. 1,
  2267. 1,
  2268. 1
  2269. ]
  2270. },
  2271. "components":[],
  2272. "child":[
  2273. {
  2274. "type":"Sprite3D",
  2275. "instanceID":624,
  2276. "props":{
  2277. "name":"Bip001 R Finger1Nub",
  2278. "active":true,
  2279. "isStatic":false,
  2280. "layer":0,
  2281. "position":[
  2282. 0.08497374,
  2283. -4.844665E-08,
  2284. -9.689331E-08
  2285. ],
  2286. "rotation":[
  2287. 7.45058E-09,
  2288. 2.980232E-08,
  2289. 1,
  2290. -1.117587E-08
  2291. ],
  2292. "scale":[
  2293. -1,
  2294. -1,
  2295. -1
  2296. ]
  2297. },
  2298. "components":[],
  2299. "child":[]
  2300. }
  2301. ]
  2302. }
  2303. ]
  2304. },
  2305. {
  2306. "type":"Sprite3D",
  2307. "instanceID":625,
  2308. "props":{
  2309. "name":"Bip001 R Finger3",
  2310. "active":true,
  2311. "isStatic":false,
  2312. "layer":0,
  2313. "position":[
  2314. 0.2011745,
  2315. 0.02645367,
  2316. -0.1217924
  2317. ],
  2318. "rotation":[
  2319. -0.04285578,
  2320. -0.03415129,
  2321. -0.7427884,
  2322. -0.66728
  2323. ],
  2324. "scale":[
  2325. 1,
  2326. 1,
  2327. 1
  2328. ]
  2329. },
  2330. "components":[],
  2331. "child":[
  2332. {
  2333. "type":"Sprite3D",
  2334. "instanceID":626,
  2335. "props":{
  2336. "name":"Bip001 R Finger31",
  2337. "active":true,
  2338. "isStatic":false,
  2339. "layer":0,
  2340. "position":[
  2341. 0.08568353,
  2342. 4.844665E-08,
  2343. 0
  2344. ],
  2345. "rotation":[
  2346. -3.051252E-09,
  2347. -2.66896E-08,
  2348. -0.4566031,
  2349. -0.8896706
  2350. ],
  2351. "scale":[
  2352. 1,
  2353. 0.9999999,
  2354. 1
  2355. ]
  2356. },
  2357. "components":[],
  2358. "child":[
  2359. {
  2360. "type":"Sprite3D",
  2361. "instanceID":627,
  2362. "props":{
  2363. "name":"Bip001 R Finger3Nub",
  2364. "active":true,
  2365. "isStatic":false,
  2366. "layer":0,
  2367. "position":[
  2368. 0.07275929,
  2369. 0,
  2370. 9.689331E-08
  2371. ],
  2372. "rotation":[
  2373. 3.885781E-16,
  2374. -1.490116E-08,
  2375. 1,
  2376. -2.607703E-08
  2377. ],
  2378. "scale":[
  2379. -0.9999999,
  2380. -1,
  2381. -0.9999999
  2382. ]
  2383. },
  2384. "components":[],
  2385. "child":[]
  2386. }
  2387. ]
  2388. }
  2389. ]
  2390. },
  2391. {
  2392. "type":"Sprite3D",
  2393. "instanceID":628,
  2394. "props":{
  2395. "name":"Bip001 R Finger2",
  2396. "active":true,
  2397. "isStatic":false,
  2398. "layer":0,
  2399. "position":[
  2400. 0.2190966,
  2401. 4.457092E-06,
  2402. -0.005551018
  2403. ],
  2404. "rotation":[
  2405. 0.01310219,
  2406. 0.01378074,
  2407. -0.7039282,
  2408. -0.7100165
  2409. ],
  2410. "scale":[
  2411. 1,
  2412. 1,
  2413. 0.9999999
  2414. ]
  2415. },
  2416. "components":[],
  2417. "child":[
  2418. {
  2419. "type":"Sprite3D",
  2420. "instanceID":629,
  2421. "props":{
  2422. "name":"Bip001 R Finger21",
  2423. "active":true,
  2424. "isStatic":false,
  2425. "layer":0,
  2426. "position":[
  2427. 0.08980121,
  2428. 0,
  2429. 0
  2430. ],
  2431. "rotation":[
  2432. 1.665491E-08,
  2433. 4.122027E-10,
  2434. -0.4692067,
  2435. -0.8830884
  2436. ],
  2437. "scale":[
  2438. 0.9999999,
  2439. 0.9999999,
  2440. 0.9999999
  2441. ]
  2442. },
  2443. "components":[],
  2444. "child":[
  2445. {
  2446. "type":"Sprite3D",
  2447. "instanceID":630,
  2448. "props":{
  2449. "name":"Bip001 R Finger2Nub",
  2450. "active":true,
  2451. "isStatic":false,
  2452. "layer":0,
  2453. "position":[
  2454. 0.08684877,
  2455. -9.689331E-08,
  2456. 9.689331E-08
  2457. ],
  2458. "rotation":[
  2459. 1.490116E-08,
  2460. 1.490116E-08,
  2461. 1,
  2462. -3.72529E-09
  2463. ],
  2464. "scale":[
  2465. -1,
  2466. -1,
  2467. -1
  2468. ]
  2469. },
  2470. "components":[],
  2471. "child":[]
  2472. }
  2473. ]
  2474. }
  2475. ]
  2476. }
  2477. ]
  2478. }
  2479. ]
  2480. }
  2481. ]
  2482. }
  2483. ]
  2484. }
  2485. ]
  2486. }
  2487. ]
  2488. }
  2489. ]
  2490. }
  2491. ]
  2492. }
  2493. ]
  2494. },
  2495. {
  2496. "type":"SkinnedMeshSprite3D",
  2497. "instanceID":631,
  2498. "props":{
  2499. "name":"boss",
  2500. "active":true,
  2501. "isStatic":false,
  2502. "layer":0,
  2503. "position":[
  2504. 0,
  2505. 0,
  2506. 0
  2507. ],
  2508. "rotation":[
  2509. 0.7071068,
  2510. 0,
  2511. 0,
  2512. -0.7071068
  2513. ],
  2514. "scale":[
  2515. 0.3937008,
  2516. 0.3937008,
  2517. 0.3937008
  2518. ],
  2519. "rootBone":557,
  2520. "boundBox":{
  2521. "min":[
  2522. -0.8641782,
  2523. -0.269423,
  2524. -0.4538389
  2525. ],
  2526. "max":[
  2527. 0.3425781,
  2528. 0.5340369,
  2529. 0.4532835
  2530. ]
  2531. },
  2532. "boundSphere":{
  2533. "center":[
  2534. -0.2608,
  2535. 0.1323069,
  2536. -0.000277698
  2537. ],
  2538. "radius":0.8550848
  2539. },
  2540. "bones":[
  2541. 564,
  2542. 557,
  2543. 558,
  2544. 559,
  2545. 569,
  2546. 560,
  2547. 561,
  2548. 566,
  2549. 565
  2550. ],
  2551. "materials":[
  2552. {
  2553. "path":"Assets/import/nijia/Materials/boss.lmat"
  2554. },
  2555. {
  2556. "path":"Assets/import/nijia/Materials/qiekaimian.lmat"
  2557. }
  2558. ],
  2559. "meshPath":"Assets/import/nijia/boss-boss.lm"
  2560. },
  2561. "components":[],
  2562. "child":[]
  2563. },
  2564. {
  2565. "type":"SkinnedMeshSprite3D",
  2566. "instanceID":632,
  2567. "props":{
  2568. "name":"boss_1",
  2569. "active":true,
  2570. "isStatic":false,
  2571. "layer":0,
  2572. "position":[
  2573. 0,
  2574. 0,
  2575. 0
  2576. ],
  2577. "rotation":[
  2578. 0.7071068,
  2579. 0,
  2580. 0,
  2581. -0.7071068
  2582. ],
  2583. "scale":[
  2584. 0.3937008,
  2585. 0.3937008,
  2586. 0.3937008
  2587. ],
  2588. "rootBone":558,
  2589. "boundBox":{
  2590. "min":[
  2591. -0.1045146,
  2592. -0.4219016,
  2593. -0.5473843
  2594. ],
  2595. "max":[
  2596. 1.525147,
  2597. 0.849298,
  2598. 0.5010793
  2599. ]
  2600. },
  2601. "boundSphere":{
  2602. "center":[
  2603. 0.7103164,
  2604. 0.2136982,
  2605. -0.0231525
  2606. ],
  2607. "radius":1.158773
  2608. },
  2609. "bones":[
  2610. 569,
  2611. 581,
  2612. 592,
  2613. 591,
  2614. 589,
  2615. 588,
  2616. 586,
  2617. 585,
  2618. 583,
  2619. 582,
  2620. 580,
  2621. 579,
  2622. 596,
  2623. 595,
  2624. 597,
  2625. 626,
  2626. 625,
  2627. 629,
  2628. 628,
  2629. 623,
  2630. 622,
  2631. 620,
  2632. 619,
  2633. 571,
  2634. 558
  2635. ],
  2636. "materials":[
  2637. {
  2638. "path":"Assets/import/nijia/Materials/boss.lmat"
  2639. },
  2640. {
  2641. "path":"Assets/import/nijia/Materials/qiekaimian.lmat"
  2642. }
  2643. ],
  2644. "meshPath":"Assets/import/nijia/boss-boss_1.lm"
  2645. },
  2646. "components":[],
  2647. "child":[]
  2648. }
  2649. ]
  2650. },
  2651. {
  2652. "type":"Sprite3D",
  2653. "instanceID":633,
  2654. "props":{
  2655. "name":"collider",
  2656. "active":true,
  2657. "isStatic":false,
  2658. "layer":0,
  2659. "position":[
  2660. 0,
  2661. 1.17,
  2662. 0.09
  2663. ],
  2664. "rotation":[
  2665. 0,
  2666. 0,
  2667. 0,
  2668. -1
  2669. ],
  2670. "scale":[
  2671. 1,
  2672. 1,
  2673. 1
  2674. ]
  2675. },
  2676. "components":[
  2677. {
  2678. "type":"PhysicsCollider",
  2679. "restitution":0,
  2680. "friction":0.5,
  2681. "rollingFriction":0,
  2682. "shapes":[
  2683. {
  2684. "type":"BoxColliderShape",
  2685. "center":[
  2686. 0,
  2687. 0,
  2688. 0
  2689. ],
  2690. "size":[
  2691. 1.24,
  2692. 2,
  2693. 0.58
  2694. ]
  2695. }
  2696. ],
  2697. "isTrigger":true
  2698. }
  2699. ],
  2700. "child":[]
  2701. }
  2702. ]
  2703. }
  2704. ]
  2705. }
  2706. }