123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073 |
- [
- {
- "__type__": "cc.SceneAsset",
- "_name": "",
- "_objFlags": 0,
- "_native": "",
- "scene": {
- "__id__": 1
- },
- "asyncLoadAssets": false
- },
- {
- "__type__": "cc.Scene",
- "_name": "",
- "_objFlags": 0,
- "_parent": null,
- "_children": [
- {
- "__id__": 2
- },
- {
- "__id__": 5
- },
- {
- "__id__": 11
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": null,
- "autoReleaseAssets": false,
- "_globals": {
- "__id__": 72
- },
- "_id": "c2b58d4e-131e-4f1f-afd3-c5565cf05d4e"
- },
- {
- "__type__": "cc.Node",
- "_name": "Main Light",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 3
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.24999999999999997,
- "y": -0.24999999999999997,
- "z": -0.06698729810778066,
- "w": 0.9330127018922194
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -30,
- "y": -30,
- "z": 0
- },
- "_id": "c0y6F5f+pAvI805TdmxIjx"
- },
- {
- "__type__": "cc.DirectionalLightComponent",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 2
- },
- "_enabled": true,
- "_color": {
- "__type__": "cc.Color",
- "r": 255,
- "g": 255,
- "b": 255,
- "a": 255
- },
- "_useColorTemperature": false,
- "_colorTemperature": 6550,
- "_staticSettings": {
- "__id__": 4
- },
- "_illuminance": 65000,
- "_id": "597uMYCbhEtJQc0ffJlcgA"
- },
- {
- "__type__": "cc.StaticLightSettings",
- "_editorOnly": false,
- "_bakeable": false,
- "_castShadow": false
- },
- {
- "__type__": "cc.Node",
- "_name": "Camera",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 6
- },
- {
- "__id__": 7
- },
- {
- "__id__": 8
- }
- ],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0.5,
- "z": 0.189
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "c9DMICJLFO5IeO07EPon7U"
- },
- {
- "__type__": "cc.CameraComponent",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "_projection": 1,
- "_priority": 0,
- "_fov": 45,
- "_fovAxis": 0,
- "_orthoHeight": 10,
- "_near": 1,
- "_far": 1000,
- "_color": {
- "__type__": "cc.Color",
- "r": 51,
- "g": 51,
- "b": 51,
- "a": 255
- },
- "_depth": 1,
- "_stencil": 0,
- "_clearFlags": 7,
- "_rect": {
- "__type__": "cc.Rect",
- "x": 0,
- "y": 0,
- "width": 1,
- "height": 1
- },
- "_aperture": 19,
- "_shutter": 7,
- "_iso": 0,
- "_screenScale": 1,
- "_visibility": "1073741824",
- "_targetTexture": null,
- "_id": "7dWQTpwS5LrIHnc1zAPUtf"
- },
- {
- "__type__": "db2b6G7KQxN8anKyUBMCEyP",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "_id": "49OdD4o5RM8pQwE/GGUy1u"
- },
- {
- "__type__": "0d872YkVUBI8KRfzuG/g0Cm",
- "_name": "",
- "_objFlags": 0,
- "node": {
- "__id__": 5
- },
- "_enabled": true,
- "leftHand": {
- "__id__": 9
- },
- "rightHand": {
- "__id__": 41
- },
- "_id": "5fQvSASkJP/6MHZwcKcaeO"
- },
- {
- "__type__": "cc.AnimationComponent",
- "_name": "Hand_L<AnimationComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 10
- },
- "_enabled": true,
- "playOnLoad": false,
- "_clips": [
- {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@c2696"
- },
- {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@88ed1"
- },
- {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@50b81"
- }
- ],
- "_defaultClip": {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@c2696"
- },
- "_id": "7e74/BZrFNF4zBjWTKSG1a"
- },
- {
- "__type__": "cc.Node",
- "_name": "Hand_L",
- "_objFlags": 0,
- "_parent": {
- "__id__": 11
- },
- "_children": [
- {
- "__id__": 43
- }
- ],
- "_active": true,
- "_components": [
- {
- "__id__": 9
- }
- ],
- "_prefab": {
- "__id__": 71
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.3,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 1,
- "z": 0,
- "w": 6.123233995736766e-17
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": -1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 180,
- "z": 0
- },
- "_id": "51zEATXadAiq67b1YUUwNC"
- },
- {
- "__type__": "cc.Node",
- "_name": "HandGroup",
- "_objFlags": 0,
- "_parent": {
- "__id__": 1
- },
- "_children": [
- {
- "__id__": 10
- },
- {
- "__id__": 12
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": null,
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": -1
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "a8ZF9dEIJI+KXLJoRrVi2f"
- },
- {
- "__type__": "cc.Node",
- "_name": "Hand_R",
- "_objFlags": 0,
- "_parent": {
- "__id__": 11
- },
- "_children": [
- {
- "__id__": 13
- }
- ],
- "_active": true,
- "_components": [
- {
- "__id__": 41
- }
- ],
- "_prefab": {
- "__id__": 42
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.3,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 1,
- "z": 0,
- "w": 6.123233995736766e-17
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 180,
- "z": 0
- },
- "_id": "3cTPdekjVLnKtwyu1nVCDg"
- },
- {
- "__type__": "cc.Node",
- "_name": "RootNode",
- "_objFlags": 0,
- "_parent": {
- "__id__": 12
- },
- "_children": [
- {
- "__id__": 14
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 40
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "cfZ76rpMVI5a5vmWo7moTc"
- },
- {
- "__type__": "cc.Node",
- "_name": "Arm",
- "_objFlags": 0,
- "_parent": {
- "__id__": 13
- },
- "_children": [
- {
- "__id__": 15
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 39
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.7071068407911907,
- "y": 0,
- "z": 0,
- "w": 0.7071067215818994
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 2.49999737739563,
- "y": 2.49999737739563,
- "z": 2.49999737739563
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -90.0000096593463,
- "y": 0,
- "z": 0
- },
- "_id": "08OqPnYD9DOp6qDx0Z/XCJ"
- },
- {
- "__type__": "cc.Node",
- "_name": "upper_arm_R",
- "_objFlags": 0,
- "_parent": {
- "__id__": 14
- },
- "_children": [
- {
- "__id__": 16
- },
- {
- "__id__": 34
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 38
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.00187119445763528,
- "y": 0.0199693888425827,
- "z": 0.0198789201676846
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.7128733386984368,
- "y": -0.12168298645414762,
- "z": 0.6820341935561695,
- "w": -0.10878516719079441
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 179.34133534803925,
- "y": -87.57588334232474,
- "z": -18.776628506046173
- },
- "_id": "44cbBp0RdCr7wYvqPSj8dT"
- },
- {
- "__type__": "cc.Node",
- "_name": "lower_arm_R",
- "_objFlags": 0,
- "_parent": {
- "__id__": 15
- },
- "_children": [
- {
- "__id__": 17
- },
- {
- "__id__": 29
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 33
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -4.76837147544984e-9,
- "y": 0.122766919434071,
- "z": 1.19209286886246e-9
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.466988449217709,
- "y": -0.8733058663251212,
- "z": -0.09971510723327488,
- "w": 0.09651709449017401
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000011920929,
- "y": 1,
- "z": 1.00000023841858
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -25.91506796552648,
- "y": -154.35835300351818,
- "z": 52.78760265566591
- },
- "_id": "cefsQSgPpOt6t4laCNMQee"
- },
- {
- "__type__": "cc.Node",
- "_name": "transform1",
- "_objFlags": 0,
- "_parent": {
- "__id__": 16
- },
- "_children": [
- {
- "__id__": 18
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 28
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.11739581823349,
- "y": 0.0252596475183964,
- "z": -0.094342976808548
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.5686733656216297,
- "y": 0.09836318228904112,
- "z": 0.7051433838438259,
- "w": 0.4119564246662747
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999999821186066,
- "y": 0.999999940395355,
- "z": 0.999999940395355
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -136.55882415880845,
- "y": 90.89566604296236,
- "z": 27.976128283550537
- },
- "_id": "0bdz9HsSdAEZBRqRJUZb8f"
- },
- {
- "__type__": "cc.Node",
- "_name": "hand_R",
- "_objFlags": 0,
- "_parent": {
- "__id__": 17
- },
- "_children": [
- {
- "__id__": 19
- },
- {
- "__id__": 23
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 27
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.0479476489126682,
- "y": -0.163001760840416,
- "z": -0.00526508083567023
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.17887440785674327,
- "y": -0.08786853629725089,
- "z": -0.9795610561564843,
- "w": 0.027261764514996373
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.99999988079071,
- "y": 0.999999940395355,
- "z": 0.999999940395355
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -169.51710436825414,
- "y": -159.18734036749785,
- "z": -1.259133752988458
- },
- "_id": "87Kqx6YYBLy7EhHvcnPAzm"
- },
- {
- "__type__": "cc.Node",
- "_name": "transform2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 18
- },
- "_children": [
- {
- "__id__": 20
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 22
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.0573748089373112,
- "y": -0.168648242950439,
- "z": -0.0279340911656618
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.1659847378211989,
- "y": 0.7220834621029274,
- "z": 0.6543067809145152,
- "w": 0.15141722827063853
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.4000004529953,
- "y": 0.4000004529953,
- "z": 0.4000004529953
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -84.34031666114561,
- "y": 179.90683531759714,
- "z": 25.967184866346347
- },
- "_id": "36XCgvbJ1OE4+P2eOF/MBp"
- },
- {
- "__type__": "cc.Node",
- "_name": "Guns",
- "_objFlags": 0,
- "_parent": {
- "__id__": 19
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 21
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0926190093159676,
- "y": 0.115806952118874,
- "z": 0.477917075157166
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -1.9718089641021357e-18,
- "y": 0.2698576470782355,
- "z": 7.035765905900923e-18,
- "w": 0.9629002286391869
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -4.3513973432661813e-16,
- "y": 31.311592403165022,
- "z": 7.153530332193965e-16
- },
- "_id": "30H7zPBV1Avo/XVxYstUnH"
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "e4sq/IizxEi4tftrOUbqCo",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "528r1dD1FPs6CQpz1Hiq+n",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "polySurface1",
- "_objFlags": 0,
- "_parent": {
- "__id__": 18
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 24
- }
- ],
- "_prefab": {
- "__id__": 26
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.123767487704754,
- "y": -0.172050505876541,
- "z": -0.00599880423396826
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.010300790094140965,
- "y": 0.04792535740088619,
- "z": 0.9732548721471967,
- "w": 0.22443709070289092
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000011920929,
- "y": 1.00000011920929,
- "z": 1.00000011920929
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -174.34031597717004,
- "y": 179.90683573579,
- "z": 25.967185849944748
- },
- "_id": "6du/AsCWlEz5iOmGcvui1A"
- },
- {
- "__type__": "cc.ModelComponent",
- "_name": "polySurface1<ModelComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 23
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
- }
- ],
- "_visFlags": 0,
- "lightmapSettings": {
- "__id__": 25
- },
- "_mesh": {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@01a55"
- },
- "_shadowCastingMode": 0,
- "_enableMorph": true,
- "_id": "efQqmidOtJTZMVBxfRmJ49"
- },
- {
- "__type__": "cc.ModelLightmapSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "e5eTdFC2tK17cxWv7fIMvG",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "d7f5n52ilAgLHFjbo7GU7x",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "adhPNh7JpAlINOWFI+skUq",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "polySurface2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 16
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 30
- }
- ],
- "_prefab": {
- "__id__": 32
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.0919497013092041,
- "y": -0.0560492798686028,
- "z": -0.104193523526192
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.701581657074488,
- "y": 0.11412622036854045,
- "z": 0.6141477824497483,
- "w": 0.34290069348583063
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999999821186066,
- "y": 0.999999940395355,
- "z": 0.999999940395355
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -139.93593026119527,
- "y": 76.8510659142986,
- "z": 15.132117863577827
- },
- "_id": "8b/1wgLi5DJYzqy1235p1a"
- },
- {
- "__type__": "cc.ModelComponent",
- "_name": "polySurface2<ModelComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 29
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
- }
- ],
- "_visFlags": 0,
- "lightmapSettings": {
- "__id__": 31
- },
- "_mesh": {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@db573"
- },
- "_shadowCastingMode": 0,
- "_enableMorph": true,
- "_id": "e6X6r5klVI6YqeskjnjW9F"
- },
- {
- "__type__": "cc.ModelLightmapSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "b9kXX4S61GNY2W83CdRr0x",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "7arMj8qwBBr5SEczRViSrp",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "polySurface3",
- "_objFlags": 0,
- "_parent": {
- "__id__": 15
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 35
- }
- ],
- "_prefab": {
- "__id__": 37
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.00320419040508568,
- "y": -0.0145574426278472,
- "z": 0.0598691701889038
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.7128733460429769,
- "y": -0.12168294300433088,
- "z": 0.6820342005829815,
- "w": 0.10878512360809416
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 161.26539208109207,
- "y": -87.70424055853603,
- "z": -1.4382008261836212
- },
- "_id": "69PYwGtQ1Kzq0LsX+zPNCz"
- },
- {
- "__type__": "cc.ModelComponent",
- "_name": "polySurface3<ModelComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 34
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
- }
- ],
- "_visFlags": 0,
- "lightmapSettings": {
- "__id__": 36
- },
- "_mesh": {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@8c3a2"
- },
- "_shadowCastingMode": 0,
- "_enableMorph": true,
- "_id": "e76uhzjxFOfLH2D9ekmwXI"
- },
- {
- "__type__": "cc.ModelLightmapSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "95PgMALmdAlpWpfofhEA3T",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "c6UWH3katGaKwQMqMGsRFg",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "37uWEpUAdL6o66ukhlR4+w",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "7bleix3KpNipUBvwgUbDgb",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.AnimationComponent",
- "_name": "Hand_R<AnimationComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 12
- },
- "_enabled": true,
- "playOnLoad": true,
- "_clips": [
- {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@c2696"
- },
- {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@88ed1"
- },
- {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@50b81"
- }
- ],
- "_defaultClip": {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@c2696"
- },
- "_id": "58I5CZbvpOvKEwOgiAiwgb"
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 12
- },
- "asset": {
- "__uuid__": "733312b3-27d4-45c4-a4c9-a72e234ae4d4"
- },
- "fileId": "9bHb4l/XtAn5Tv/diNe0aB",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "RootNode",
- "_objFlags": 0,
- "_parent": {
- "__id__": 10
- },
- "_children": [
- {
- "__id__": 44
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 70
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 1
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_id": "155Qk8q65PX53i+cpLwS7O"
- },
- {
- "__type__": "cc.Node",
- "_name": "Arm",
- "_objFlags": 0,
- "_parent": {
- "__id__": 43
- },
- "_children": [
- {
- "__id__": 45
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 69
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 0,
- "z": 0
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.7071068407911907,
- "y": 0,
- "z": 0,
- "w": 0.7071067215818994
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 2.49999737739563,
- "y": 2.49999737739563,
- "z": 2.49999737739563
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -90.0000096593463,
- "y": 0,
- "z": 0
- },
- "_id": "a6v+ZMR7ZFt76d3KPklie2"
- },
- {
- "__type__": "cc.Node",
- "_name": "upper_arm_R",
- "_objFlags": 0,
- "_parent": {
- "__id__": 44
- },
- "_children": [
- {
- "__id__": 46
- },
- {
- "__id__": 64
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 68
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.00187119445763528,
- "y": 0.0199693888425827,
- "z": 0.0198789201676846
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.7128733386984368,
- "y": -0.12168298645414762,
- "z": 0.6820341935561695,
- "w": -0.10878516719079441
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 179.34133534803925,
- "y": -87.57588334232474,
- "z": -18.776628506046173
- },
- "_id": "f4x2qVx3FJ/LPGFvjo7jcf"
- },
- {
- "__type__": "cc.Node",
- "_name": "lower_arm_R",
- "_objFlags": 0,
- "_parent": {
- "__id__": 45
- },
- "_children": [
- {
- "__id__": 47
- },
- {
- "__id__": 59
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 63
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -4.76837147544984e-9,
- "y": 0.122766919434071,
- "z": 1.19209286886246e-9
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.466988449217709,
- "y": -0.8733058663251212,
- "z": -0.09971510723327488,
- "w": 0.09651709449017401
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000011920929,
- "y": 1,
- "z": 1.00000023841858
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -25.91506796552648,
- "y": -154.35835300351818,
- "z": 52.78760265566591
- },
- "_id": "40jON0boJEYI6WM3t2UxNy"
- },
- {
- "__type__": "cc.Node",
- "_name": "transform1",
- "_objFlags": 0,
- "_parent": {
- "__id__": 46
- },
- "_children": [
- {
- "__id__": 48
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 58
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.11739581823349,
- "y": 0.0252596475183964,
- "z": -0.094342976808548
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.5686733656216297,
- "y": 0.09836318228904112,
- "z": 0.7051433838438259,
- "w": 0.4119564246662747
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999999821186066,
- "y": 0.999999940395355,
- "z": 0.999999940395355
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -136.55882415880845,
- "y": 90.89566604296236,
- "z": 27.976128283550537
- },
- "_id": "13+8G1UkhOBq2DuG0ubjRI"
- },
- {
- "__type__": "cc.Node",
- "_name": "hand_R",
- "_objFlags": 0,
- "_parent": {
- "__id__": 47
- },
- "_children": [
- {
- "__id__": 49
- },
- {
- "__id__": 53
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 57
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.0479476489126682,
- "y": -0.163001760840416,
- "z": -0.00526508083567023
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.17887440785674327,
- "y": -0.08786853629725089,
- "z": -0.9795610561564843,
- "w": 0.027261764514996373
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.99999988079071,
- "y": 0.999999940395355,
- "z": 0.999999940395355
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -169.51710436825414,
- "y": -159.18734036749785,
- "z": -1.259133752988458
- },
- "_id": "0cAjNwC4VOtqHdJjbNgeTg"
- },
- {
- "__type__": "cc.Node",
- "_name": "transform2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 48
- },
- "_children": [
- {
- "__id__": 50
- }
- ],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 52
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.0573748089373112,
- "y": -0.168648242950439,
- "z": -0.0279340911656618
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.1659847378211989,
- "y": 0.7220834621029274,
- "z": 0.6543067809145152,
- "w": 0.15141722827063853
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.4000004529953,
- "y": 0.4000004529953,
- "z": 0.4000004529953
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -84.34031666114561,
- "y": 179.90683531759714,
- "z": 25.967184866346347
- },
- "_id": "3dfsSGTFpBfJP0sX6bKLFA"
- },
- {
- "__type__": "cc.Node",
- "_name": "Guns",
- "_objFlags": 0,
- "_parent": {
- "__id__": 49
- },
- "_children": [],
- "_active": true,
- "_components": [],
- "_prefab": {
- "__id__": 51
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": 0.0926190093159676,
- "y": 0.115806952118874,
- "z": 0.477917075157166
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -1.9718089641021357e-18,
- "y": 0.2698576470782355,
- "z": 7.035765905900923e-18,
- "w": 0.9629002286391869
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -4.3513973432661813e-16,
- "y": 31.311592403165022,
- "z": 7.153530332193965e-16
- },
- "_id": "36af4GqR9FULJRRgX2mkym"
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "f8Bk5vekFAMKJwTjncsZBK",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "cer9nEI/1Pg53NjzIE+vwW",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "polySurface1",
- "_objFlags": 0,
- "_parent": {
- "__id__": 48
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 54
- }
- ],
- "_prefab": {
- "__id__": 56
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.123767487704754,
- "y": -0.172050505876541,
- "z": -0.00599880423396826
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.010300790094140965,
- "y": 0.04792535740088619,
- "z": 0.9732548721471967,
- "w": 0.22443709070289092
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1.00000011920929,
- "y": 1.00000011920929,
- "z": 1.00000011920929
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -174.34031597717004,
- "y": 179.90683573579,
- "z": 25.967185849944748
- },
- "_id": "d8Qb4q3AtI85eBP59erzxl"
- },
- {
- "__type__": "cc.ModelComponent",
- "_name": "polySurface1<ModelComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 53
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
- }
- ],
- "_visFlags": 0,
- "lightmapSettings": {
- "__id__": 55
- },
- "_mesh": {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@01a55"
- },
- "_shadowCastingMode": 0,
- "_enableMorph": true,
- "_id": "f9yHyedL1FoqkMx/17ei2Q"
- },
- {
- "__type__": "cc.ModelLightmapSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "68KfresDtGSo1i2hZTxgrx",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "c8t9/vPihMzJ0+hiyEL+V1",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "86g6sB3rZCS4r4TiFhHbJE",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "polySurface2",
- "_objFlags": 0,
- "_parent": {
- "__id__": 46
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 60
- }
- ],
- "_prefab": {
- "__id__": 62
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.0919497013092041,
- "y": -0.0560492798686028,
- "z": -0.104193523526192
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": -0.701581657074488,
- "y": 0.11412622036854045,
- "z": 0.6141477824497483,
- "w": 0.34290069348583063
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 0.999999821186066,
- "y": 0.999999940395355,
- "z": 0.999999940395355
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": -139.93593026119527,
- "y": 76.8510659142986,
- "z": 15.132117863577827
- },
- "_id": "9aqltNvOxPTYVtEJj7v8ne"
- },
- {
- "__type__": "cc.ModelComponent",
- "_name": "polySurface2<ModelComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 59
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
- }
- ],
- "_visFlags": 0,
- "lightmapSettings": {
- "__id__": 61
- },
- "_mesh": {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@db573"
- },
- "_shadowCastingMode": 0,
- "_enableMorph": true,
- "_id": "02+LSAWfNMYKsKsl4E1qKv"
- },
- {
- "__type__": "cc.ModelLightmapSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "254fdvz51DH5+sRN3qM/Vd",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "52IX4cqXNGQZFa2Cb0z8XJ",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.Node",
- "_name": "polySurface3",
- "_objFlags": 0,
- "_parent": {
- "__id__": 45
- },
- "_children": [],
- "_active": true,
- "_components": [
- {
- "__id__": 65
- }
- ],
- "_prefab": {
- "__id__": 67
- },
- "_lpos": {
- "__type__": "cc.Vec3",
- "x": -0.00320419040508568,
- "y": -0.0145574426278472,
- "z": 0.0598691701889038
- },
- "_lrot": {
- "__type__": "cc.Quat",
- "x": 0.7128733460429769,
- "y": -0.12168294300433088,
- "z": 0.6820342005829815,
- "w": 0.10878512360809416
- },
- "_lscale": {
- "__type__": "cc.Vec3",
- "x": 1,
- "y": 1,
- "z": 1
- },
- "_layer": 1073741824,
- "_euler": {
- "__type__": "cc.Vec3",
- "x": 161.26539208109207,
- "y": -87.70424055853603,
- "z": -1.4382008261836212
- },
- "_id": "30WEDtZbVJaJBh8/Fk3lQ0"
- },
- {
- "__type__": "cc.ModelComponent",
- "_name": "polySurface3<ModelComponent>",
- "_objFlags": 0,
- "node": {
- "__id__": 64
- },
- "_enabled": true,
- "_materials": [
- {
- "__uuid__": "a710ff13-6ded-4e21-b0a8-3df4175833eb"
- }
- ],
- "_visFlags": 0,
- "lightmapSettings": {
- "__id__": 66
- },
- "_mesh": {
- "__uuid__": "4c5c56bf-bd01-4841-8115-43f5238e1230@8c3a2"
- },
- "_shadowCastingMode": 0,
- "_enableMorph": true,
- "_id": "6bBHFNMq5HxZ5Rg4nyM6NM"
- },
- {
- "__type__": "cc.ModelLightmapSettings",
- "texture": null,
- "uvParam": {
- "__type__": "cc.Vec4",
- "x": 0,
- "y": 0,
- "z": 0,
- "w": 0
- },
- "_bakeable": false,
- "_castShadow": false,
- "_receiveShadow": false,
- "_recieveShadow": false,
- "_lightmapSize": 64
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "afChOVxH5IlLoE7YFbdlGy",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "68zkKsDEJPlI1FN/RM2ssV",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "20ezGcx9NCTqJ8esh94DVz",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "c88CGHgEhNmr8BRczWULMw",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.PrefabInfo",
- "root": {
- "__id__": 10
- },
- "asset": {
- "__uuid__": "b4bd0743-1f05-4147-9a12-0e7c36919a7d"
- },
- "fileId": "3aC5oiKOBEBbDRpjrEmq//",
- "sync": false,
- "_synced": {
- "default": false,
- "serializable": false
- }
- },
- {
- "__type__": "cc.SceneGlobals",
- "ambient": {
- "__id__": 73
- },
- "planarShadows": {
- "__id__": 74
- },
- "_skybox": {
- "__id__": 75
- }
- },
- {
- "__type__": "cc.AmbientInfo",
- "_skyColor": {
- "__type__": "cc.Color",
- "r": 51,
- "g": 128,
- "b": 204,
- "a": 1
- },
- "_skyIllum": 20000,
- "_groundAlbedo": {
- "__type__": "cc.Color",
- "r": 51,
- "g": 51,
- "b": 51,
- "a": 255
- }
- },
- {
- "__type__": "cc.PlanarShadowInfo",
- "_enabled": false,
- "_normal": {
- "__type__": "cc.Vec3",
- "x": 0,
- "y": 1,
- "z": 0
- },
- "_distance": 0,
- "_shadowColor": {
- "__type__": "cc.Color",
- "r": 0,
- "g": 0,
- "b": 0,
- "a": 76
- }
- },
- {
- "__type__": "cc.SkyboxInfo",
- "_envmap": null,
- "_isRGBE": false,
- "_enabled": false,
- "_useIBL": false
- }
- ]
|