StartBasketballCourtAnimation.anim 154 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394959697989910010110210310410510610710810911011111211311411511611711811912012112212312412512612712812913013113213313413513613713813914014114214314414514614714814915015115215315415515615715815916016116216316416516616716816917017117217317417517617717817918018118218318418518618718818919019119219319419519619719819920020120220320420520620720820921021121221321421521621721821922022122222322422522622722822923023123223323423523623723823924024124224324424524624724824925025125225325425525625725825926026126226326426526626726826927027127227327427527627727827928028128228328428528628728828929029129229329429529629729829930030130230330430530630730830931031131231331431531631731831932032132232332432532632732832933033133233333433533633733833934034134234334434534634734834935035135235335435535635735835936036136236336436536636736836937037137237337437537637737837938038138238338438538638738838939039139239339439539639739839940040140240340440540640740840941041141241341441541641741841942042142242342442542642742842943043143243343443543643743843944044144244344444544644744844945045145245345445545645745845946046146246346446546646746846947047147247347447547647747847948048148248348448548648748848949049149249349449549649749849950050150250350450550650750850951051151251351451551651751851952052152252352452552652752852953053153253353453553653753853954054154254354454554654754854955055155255355455555655755855956056156256356456556656756856957057157257357457557657757857958058158258358458558658758858959059159259359459559659759859960060160260360460560660760860961061161261361461561661761861962062162262362462562662762862963063163263363463563663763863964064164264364464564664764864965065165265365465565665765865966066166266366466566666766866967067167267367467567667767867968068168268368468568668768868969069169269369469569669769869970070170270370470570670770870971071171271371471571671771871972072172272372472572672772872973073173273373473573673773873974074174274374474574674774874975075175275375475575675775875976076176276376476576676776876977077177277377477577677777877978078178278378478578678778878979079179279379479579679779879980080180280380480580680780880981081181281381481581681781881982082182282382482582682782882983083183283383483583683783883984084184284384484584684784884985085185285385485585685785885986086186286386486586686786886987087187287387487587687787887988088188288388488588688788888989089189289389489589689789889990090190290390490590690790890991091191291391491591691791891992092192292392492592692792892993093193293393493593693793893994094194294394494594694794894995095195295395495595695795895996096196296396496596696796896997097197297397497597697797897998098198298398498598698798898999099199299399499599699799899910001001100210031004100510061007100810091010101110121013101410151016101710181019102010211022102310241025102610271028102910301031103210331034103510361037103810391040104110421043104410451046104710481049105010511052105310541055105610571058105910601061106210631064106510661067106810691070107110721073107410751076107710781079108010811082108310841085108610871088108910901091109210931094109510961097109810991100110111021103110411051106110711081109111011111112111311141115111611171118111911201121112211231124112511261127112811291130113111321133113411351136113711381139114011411142114311441145114611471148114911501151115211531154115511561157115811591160116111621163116411651166116711681169117011711172117311741175117611771178117911801181118211831184118511861187118811891190119111921193119411951196119711981199120012011202120312041205120612071208120912101211121212131214121512161217121812191220122112221223122412251226122712281229123012311232123312341235123612371238123912401241124212431244124512461247124812491250125112521253125412551256125712581259126012611262126312641265126612671268126912701271127212731274127512761277127812791280128112821283128412851286128712881289129012911292129312941295129612971298129913001301130213031304130513061307130813091310131113121313131413151316131713181319132013211322132313241325132613271328132913301331133213331334133513361337133813391340134113421343134413451346134713481349135013511352135313541355135613571358135913601361136213631364136513661367136813691370137113721373137413751376137713781379138013811382138313841385138613871388138913901391139213931394139513961397139813991400140114021403140414051406140714081409141014111412141314141415141614171418141914201421142214231424142514261427142814291430143114321433143414351436143714381439144014411442144314441445144614471448144914501451145214531454145514561457145814591460146114621463146414651466146714681469147014711472147314741475147614771478147914801481148214831484148514861487148814891490149114921493149414951496149714981499150015011502150315041505150615071508150915101511151215131514151515161517151815191520152115221523152415251526152715281529153015311532153315341535153615371538153915401541154215431544154515461547154815491550155115521553155415551556155715581559156015611562156315641565156615671568156915701571157215731574157515761577157815791580158115821583158415851586158715881589159015911592159315941595159615971598159916001601160216031604160516061607160816091610161116121613161416151616161716181619162016211622162316241625162616271628162916301631163216331634163516361637163816391640164116421643164416451646164716481649165016511652165316541655165616571658165916601661166216631664166516661667166816691670167116721673167416751676167716781679168016811682168316841685168616871688168916901691169216931694169516961697169816991700170117021703170417051706170717081709171017111712171317141715171617171718171917201721172217231724172517261727172817291730173117321733173417351736173717381739174017411742174317441745174617471748174917501751175217531754175517561757175817591760176117621763176417651766176717681769177017711772177317741775177617771778177917801781178217831784178517861787178817891790179117921793179417951796179717981799180018011802180318041805180618071808180918101811181218131814181518161817181818191820182118221823182418251826182718281829183018311832183318341835183618371838183918401841184218431844184518461847184818491850185118521853185418551856185718581859186018611862186318641865186618671868186918701871187218731874187518761877187818791880188118821883188418851886188718881889189018911892189318941895189618971898189919001901190219031904190519061907190819091910191119121913191419151916191719181919192019211922192319241925192619271928192919301931193219331934193519361937193819391940194119421943194419451946194719481949195019511952195319541955195619571958195919601961196219631964196519661967196819691970197119721973197419751976197719781979198019811982198319841985198619871988198919901991199219931994199519961997199819992000200120022003200420052006200720082009201020112012201320142015201620172018201920202021202220232024202520262027202820292030203120322033203420352036203720382039204020412042204320442045204620472048204920502051205220532054205520562057205820592060206120622063206420652066206720682069207020712072207320742075207620772078207920802081208220832084208520862087208820892090209120922093209420952096209720982099210021012102210321042105210621072108210921102111211221132114211521162117211821192120212121222123212421252126212721282129213021312132213321342135213621372138213921402141214221432144214521462147214821492150215121522153215421552156215721582159216021612162216321642165216621672168216921702171217221732174217521762177217821792180218121822183218421852186218721882189219021912192219321942195219621972198219922002201220222032204220522062207220822092210221122122213221422152216221722182219222022212222222322242225222622272228222922302231223222332234223522362237223822392240224122422243224422452246224722482249225022512252225322542255225622572258225922602261226222632264226522662267226822692270227122722273227422752276227722782279228022812282228322842285228622872288228922902291229222932294229522962297229822992300230123022303230423052306230723082309231023112312231323142315231623172318231923202321232223232324232523262327232823292330233123322333233423352336233723382339234023412342234323442345234623472348234923502351235223532354235523562357235823592360236123622363236423652366236723682369237023712372237323742375237623772378237923802381238223832384238523862387238823892390239123922393239423952396239723982399240024012402240324042405240624072408240924102411241224132414241524162417241824192420242124222423242424252426242724282429243024312432243324342435243624372438243924402441244224432444244524462447244824492450245124522453245424552456245724582459246024612462246324642465246624672468246924702471247224732474247524762477247824792480248124822483248424852486248724882489249024912492249324942495249624972498249925002501250225032504250525062507250825092510251125122513251425152516251725182519252025212522252325242525252625272528252925302531253225332534253525362537253825392540254125422543254425452546254725482549255025512552255325542555255625572558255925602561256225632564256525662567256825692570257125722573257425752576257725782579258025812582258325842585258625872588258925902591259225932594259525962597259825992600260126022603260426052606260726082609261026112612261326142615261626172618261926202621262226232624262526262627262826292630263126322633263426352636263726382639264026412642264326442645264626472648264926502651265226532654265526562657265826592660266126622663266426652666266726682669267026712672267326742675267626772678267926802681268226832684268526862687268826892690269126922693269426952696269726982699270027012702270327042705270627072708270927102711271227132714271527162717271827192720272127222723272427252726272727282729273027312732273327342735273627372738273927402741274227432744274527462747274827492750275127522753275427552756275727582759276027612762276327642765276627672768276927702771277227732774277527762777277827792780278127822783278427852786278727882789279027912792279327942795279627972798279928002801280228032804280528062807280828092810281128122813281428152816281728182819282028212822282328242825282628272828282928302831283228332834283528362837283828392840284128422843284428452846284728482849285028512852285328542855285628572858285928602861286228632864286528662867286828692870287128722873287428752876287728782879288028812882288328842885288628872888288928902891289228932894289528962897289828992900290129022903290429052906290729082909291029112912291329142915291629172918291929202921292229232924292529262927292829292930293129322933293429352936293729382939294029412942294329442945294629472948294929502951295229532954295529562957295829592960296129622963296429652966296729682969297029712972297329742975297629772978297929802981298229832984298529862987298829892990299129922993299429952996299729982999300030013002300330043005300630073008300930103011301230133014301530163017301830193020302130223023302430253026302730283029303030313032303330343035303630373038303930403041304230433044304530463047304830493050305130523053305430553056305730583059306030613062306330643065306630673068306930703071307230733074307530763077307830793080308130823083308430853086308730883089309030913092309330943095309630973098309931003101310231033104310531063107310831093110311131123113311431153116311731183119312031213122312331243125312631273128312931303131313231333134313531363137313831393140314131423143314431453146314731483149315031513152315331543155315631573158315931603161316231633164316531663167316831693170317131723173317431753176317731783179318031813182318331843185318631873188318931903191319231933194319531963197319831993200320132023203320432053206320732083209321032113212321332143215321632173218321932203221322232233224322532263227322832293230323132323233323432353236323732383239324032413242324332443245324632473248324932503251325232533254325532563257325832593260326132623263326432653266326732683269327032713272327332743275327632773278327932803281328232833284328532863287328832893290329132923293329432953296329732983299330033013302330333043305330633073308330933103311331233133314331533163317331833193320332133223323332433253326332733283329333033313332333333343335333633373338333933403341334233433344334533463347334833493350335133523353335433553356335733583359336033613362336333643365336633673368336933703371337233733374337533763377337833793380338133823383338433853386338733883389339033913392339333943395339633973398339934003401340234033404340534063407340834093410341134123413341434153416341734183419342034213422342334243425342634273428342934303431343234333434343534363437343834393440344134423443344434453446344734483449345034513452345334543455345634573458345934603461346234633464346534663467346834693470347134723473347434753476347734783479348034813482348334843485348634873488348934903491349234933494349534963497349834993500350135023503350435053506350735083509351035113512351335143515351635173518351935203521352235233524352535263527352835293530353135323533353435353536353735383539354035413542354335443545354635473548354935503551355235533554355535563557355835593560356135623563356435653566356735683569357035713572357335743575357635773578357935803581358235833584358535863587358835893590359135923593359435953596359735983599360036013602360336043605360636073608360936103611361236133614361536163617361836193620362136223623362436253626362736283629363036313632363336343635363636373638363936403641364236433644364536463647364836493650365136523653365436553656365736583659366036613662366336643665366636673668366936703671367236733674367536763677367836793680368136823683368436853686368736883689369036913692369336943695369636973698369937003701370237033704370537063707370837093710371137123713371437153716371737183719372037213722372337243725372637273728372937303731373237333734373537363737373837393740374137423743374437453746374737483749375037513752375337543755375637573758375937603761376237633764376537663767376837693770377137723773377437753776377737783779378037813782378337843785378637873788378937903791379237933794379537963797379837993800380138023803380438053806380738083809381038113812381338143815381638173818381938203821382238233824382538263827382838293830383138323833383438353836383738383839384038413842384338443845384638473848384938503851385238533854385538563857385838593860386138623863386438653866386738683869387038713872387338743875387638773878387938803881388238833884388538863887388838893890389138923893389438953896389738983899390039013902390339043905390639073908390939103911391239133914391539163917391839193920392139223923392439253926392739283929393039313932393339343935393639373938393939403941394239433944394539463947394839493950395139523953395439553956395739583959396039613962396339643965396639673968396939703971397239733974397539763977397839793980398139823983398439853986398739883989399039913992399339943995399639973998399940004001400240034004400540064007400840094010401140124013401440154016401740184019402040214022402340244025402640274028402940304031403240334034403540364037403840394040404140424043404440454046404740484049405040514052405340544055405640574058405940604061406240634064406540664067406840694070407140724073407440754076407740784079408040814082408340844085408640874088408940904091409240934094409540964097409840994100410141024103410441054106410741084109411041114112411341144115411641174118411941204121412241234124412541264127412841294130413141324133413441354136413741384139414041414142414341444145414641474148414941504151415241534154415541564157415841594160416141624163416441654166416741684169417041714172417341744175417641774178417941804181418241834184418541864187418841894190419141924193419441954196419741984199420042014202420342044205420642074208420942104211421242134214421542164217421842194220422142224223422442254226422742284229423042314232423342344235423642374238423942404241424242434244424542464247424842494250425142524253425442554256425742584259426042614262426342644265426642674268426942704271427242734274427542764277427842794280428142824283428442854286428742884289429042914292429342944295429642974298429943004301430243034304430543064307430843094310431143124313431443154316431743184319432043214322432343244325432643274328432943304331433243334334433543364337433843394340434143424343434443454346434743484349435043514352435343544355435643574358435943604361436243634364436543664367436843694370437143724373437443754376437743784379438043814382438343844385438643874388438943904391439243934394439543964397439843994400440144024403440444054406440744084409441044114412441344144415441644174418441944204421442244234424442544264427442844294430443144324433443444354436443744384439444044414442444344444445444644474448444944504451445244534454445544564457445844594460446144624463446444654466446744684469447044714472447344744475447644774478447944804481448244834484448544864487448844894490449144924493449444954496449744984499450045014502450345044505450645074508450945104511451245134514451545164517451845194520452145224523452445254526452745284529453045314532453345344535453645374538453945404541454245434544454545464547454845494550455145524553455445554556455745584559456045614562456345644565456645674568456945704571457245734574457545764577457845794580458145824583458445854586458745884589459045914592459345944595459645974598459946004601460246034604460546064607460846094610461146124613461446154616461746184619462046214622462346244625462646274628462946304631463246334634463546364637463846394640464146424643464446454646464746484649465046514652465346544655465646574658465946604661466246634664466546664667466846694670467146724673467446754676467746784679468046814682468346844685468646874688468946904691469246934694469546964697469846994700470147024703470447054706470747084709471047114712471347144715471647174718471947204721472247234724472547264727472847294730473147324733473447354736473747384739474047414742474347444745474647474748474947504751475247534754475547564757475847594760476147624763476447654766476747684769477047714772477347744775477647774778477947804781478247834784478547864787478847894790479147924793479447954796479747984799480048014802480348044805480648074808480948104811481248134814481548164817481848194820482148224823482448254826482748284829483048314832483348344835483648374838483948404841484248434844484548464847484848494850485148524853485448554856485748584859486048614862486348644865486648674868486948704871487248734874487548764877487848794880488148824883488448854886488748884889489048914892489348944895489648974898489949004901490249034904490549064907490849094910491149124913491449154916491749184919492049214922492349244925492649274928492949304931493249334934493549364937493849394940494149424943494449454946494749484949495049514952495349544955495649574958495949604961496249634964496549664967496849694970497149724973497449754976497749784979498049814982498349844985498649874988498949904991499249934994499549964997499849995000500150025003500450055006500750085009501050115012501350145015501650175018501950205021502250235024502550265027502850295030503150325033503450355036503750385039504050415042504350445045504650475048504950505051505250535054505550565057505850595060506150625063506450655066506750685069507050715072507350745075507650775078507950805081508250835084508550865087508850895090509150925093509450955096509750985099510051015102510351045105510651075108510951105111511251135114511551165117511851195120512151225123512451255126512751285129513051315132513351345135513651375138513951405141514251435144514551465147514851495150515151525153515451555156515751585159516051615162516351645165516651675168516951705171517251735174517551765177517851795180518151825183518451855186518751885189519051915192519351945195519651975198519952005201520252035204520552065207520852095210521152125213521452155216521752185219522052215222522352245225522652275228522952305231523252335234523552365237523852395240524152425243524452455246524752485249525052515252525352545255525652575258525952605261526252635264526552665267526852695270527152725273527452755276527752785279528052815282528352845285528652875288528952905291529252935294529552965297529852995300530153025303530453055306530753085309531053115312531353145315531653175318531953205321532253235324532553265327532853295330533153325333533453355336533753385339534053415342534353445345534653475348534953505351535253535354535553565357535853595360536153625363536453655366536753685369537053715372537353745375537653775378537953805381538253835384538553865387538853895390539153925393539453955396539753985399540054015402540354045405540654075408540954105411541254135414541554165417541854195420542154225423542454255426542754285429543054315432543354345435543654375438543954405441544254435444544554465447544854495450545154525453545454555456545754585459546054615462546354645465546654675468546954705471547254735474547554765477547854795480548154825483548454855486548754885489549054915492549354945495549654975498549955005501550255035504550555065507550855095510551155125513551455155516551755185519552055215522552355245525552655275528552955305531553255335534553555365537553855395540554155425543554455455546554755485549555055515552555355545555555655575558555955605561556255635564556555665567556855695570557155725573557455755576557755785579558055815582558355845585558655875588558955905591559255935594559555965597559855995600560156025603560456055606560756085609561056115612561356145615561656175618561956205621562256235624562556265627562856295630563156325633563456355636563756385639564056415642564356445645564656475648564956505651565256535654565556565657565856595660566156625663566456655666566756685669567056715672567356745675567656775678567956805681568256835684568556865687568856895690569156925693569456955696569756985699570057015702570357045705570657075708570957105711571257135714571557165717571857195720572157225723572457255726572757285729573057315732573357345735573657375738573957405741574257435744574557465747574857495750575157525753575457555756575757585759576057615762576357645765576657675768576957705771577257735774577557765777577857795780578157825783578457855786578757885789579057915792579357945795579657975798579958005801580258035804580558065807580858095810581158125813581458155816581758185819582058215822582358245825582658275828582958305831583258335834583558365837583858395840584158425843584458455846584758485849585058515852585358545855585658575858585958605861586258635864586558665867586858695870587158725873587458755876587758785879588058815882588358845885588658875888588958905891589258935894589558965897589858995900590159025903590459055906590759085909591059115912591359145915591659175918591959205921592259235924592559265927592859295930593159325933593459355936593759385939594059415942594359445945594659475948594959505951595259535954595559565957595859595960596159625963596459655966596759685969597059715972597359745975597659775978597959805981598259835984598559865987598859895990599159925993599459955996599759985999600060016002600360046005600660076008600960106011601260136014601560166017601860196020602160226023602460256026602760286029603060316032603360346035603660376038603960406041604260436044604560466047604860496050605160526053605460556056605760586059606060616062606360646065606660676068606960706071607260736074607560766077607860796080608160826083608460856086608760886089609060916092609360946095609660976098609961006101610261036104610561066107610861096110611161126113611461156116611761186119612061216122612361246125612661276128612961306131613261336134613561366137613861396140614161426143614461456146614761486149615061516152615361546155615661576158615961606161616261636164616561666167616861696170617161726173617461756176617761786179618061816182618361846185618661876188618961906191619261936194619561966197619861996200620162026203620462056206620762086209621062116212621362146215621662176218621962206221622262236224622562266227622862296230623162326233623462356236623762386239624062416242624362446245624662476248624962506251625262536254625562566257625862596260626162626263626462656266626762686269627062716272627362746275627662776278627962806281628262836284628562866287628862896290629162926293629462956296629762986299630063016302630363046305630663076308630963106311631263136314631563166317631863196320632163226323632463256326632763286329633063316332633363346335633663376338633963406341634263436344634563466347634863496350635163526353635463556356635763586359636063616362636363646365636663676368636963706371637263736374637563766377637863796380638163826383638463856386638763886389639063916392639363946395639663976398639964006401640264036404640564066407640864096410641164126413641464156416641764186419642064216422642364246425642664276428642964306431643264336434643564366437643864396440644164426443644464456446644764486449645064516452645364546455645664576458645964606461646264636464646564666467646864696470647164726473647464756476647764786479648064816482648364846485648664876488648964906491649264936494649564966497649864996500650165026503650465056506650765086509651065116512651365146515651665176518651965206521652265236524652565266527652865296530653165326533653465356536653765386539654065416542654365446545654665476548654965506551655265536554655565566557655865596560656165626563656465656566656765686569657065716572657365746575657665776578
  1. %YAML 1.1
  2. %TAG !u! tag:unity3d.com,2011:
  3. --- !u!74 &7400000
  4. AnimationClip:
  5. m_ObjectHideFlags: 0
  6. m_CorrespondingSourceObject: {fileID: 0}
  7. m_PrefabInstance: {fileID: 0}
  8. m_PrefabAsset: {fileID: 0}
  9. m_Name: StartBasketballCourtAnimation
  10. serializedVersion: 6
  11. m_Legacy: 0
  12. m_Compressed: 0
  13. m_UseHighQualityCurve: 1
  14. m_RotationCurves: []
  15. m_CompressedRotationCurves: []
  16. m_EulerCurves: []
  17. m_PositionCurves: []
  18. m_ScaleCurves: []
  19. m_FloatCurves:
  20. - curve:
  21. serializedVersion: 2
  22. m_Curve:
  23. - serializedVersion: 3
  24. time: 0.95
  25. value: 0
  26. inSlope: Infinity
  27. outSlope: 0.7228916
  28. tangentMode: 69
  29. weightedMode: 0
  30. inWeight: 0
  31. outWeight: 0
  32. - serializedVersion: 3
  33. time: 2.3333333
  34. value: 1
  35. inSlope: Infinity
  36. outSlope: Infinity
  37. tangentMode: 103
  38. weightedMode: 0
  39. inWeight: 0
  40. outWeight: 0
  41. - serializedVersion: 3
  42. time: 3.95
  43. value: 1
  44. inSlope: Infinity
  45. outSlope: Infinity
  46. tangentMode: 103
  47. weightedMode: 0
  48. inWeight: 0
  49. outWeight: 0
  50. m_PreInfinity: 2
  51. m_PostInfinity: 2
  52. m_RotationOrder: 4
  53. attribute: m_IsActive
  54. path: BasketballCourt (1)
  55. classID: 1
  56. script: {fileID: 0}
  57. - curve:
  58. serializedVersion: 2
  59. m_Curve:
  60. - serializedVersion: 3
  61. time: 0
  62. value: 0
  63. inSlope: Infinity
  64. outSlope: Infinity
  65. tangentMode: 103
  66. weightedMode: 0
  67. inWeight: 0
  68. outWeight: 0
  69. - serializedVersion: 3
  70. time: 2.45
  71. value: 1
  72. inSlope: Infinity
  73. outSlope: Infinity
  74. tangentMode: 103
  75. weightedMode: 0
  76. inWeight: 0
  77. outWeight: 0
  78. m_PreInfinity: 2
  79. m_PostInfinity: 2
  80. m_RotationOrder: 4
  81. attribute: m_Enabled
  82. path: BasketballCourt (1)/diman
  83. classID: 23
  84. script: {fileID: 0}
  85. - curve:
  86. serializedVersion: 2
  87. m_Curve:
  88. - serializedVersion: 3
  89. time: 0
  90. value: 0
  91. inSlope: Infinity
  92. outSlope: Infinity
  93. tangentMode: 103
  94. weightedMode: 0
  95. inWeight: 0
  96. outWeight: 0
  97. - serializedVersion: 3
  98. time: 0.95
  99. value: 1
  100. inSlope: Infinity
  101. outSlope: Infinity
  102. tangentMode: 103
  103. weightedMode: 0
  104. inWeight: 0
  105. outWeight: 0
  106. - serializedVersion: 3
  107. time: 3.95
  108. value: 1
  109. inSlope: Infinity
  110. outSlope: Infinity
  111. tangentMode: 103
  112. weightedMode: 0
  113. inWeight: 0
  114. outWeight: 0
  115. m_PreInfinity: 2
  116. m_PostInfinity: 2
  117. m_RotationOrder: 4
  118. attribute: m_IsActive
  119. path: BasketballLine01
  120. classID: 1
  121. script: {fileID: 0}
  122. - curve:
  123. serializedVersion: 2
  124. m_Curve:
  125. - serializedVersion: 3
  126. time: 0.95
  127. value: 1
  128. inSlope: 0
  129. outSlope: 0
  130. tangentMode: 69
  131. weightedMode: 0
  132. inWeight: 0.33333334
  133. outWeight: 0.33333334
  134. - serializedVersion: 3
  135. time: 2.0666666
  136. value: 1
  137. inSlope: -0
  138. outSlope: 0
  139. tangentMode: 69
  140. weightedMode: 0
  141. inWeight: 0.33333334
  142. outWeight: 0.33333334
  143. - serializedVersion: 3
  144. time: 3.3166666
  145. value: 1
  146. inSlope: -0
  147. outSlope: 0
  148. tangentMode: 69
  149. weightedMode: 0
  150. inWeight: 0.33333334
  151. outWeight: 0.33333334
  152. - serializedVersion: 3
  153. time: 3.95
  154. value: 1
  155. inSlope: -0
  156. outSlope: 0
  157. tangentMode: 69
  158. weightedMode: 0
  159. inWeight: 0.33333334
  160. outWeight: 0.33333334
  161. m_PreInfinity: 2
  162. m_PostInfinity: 2
  163. m_RotationOrder: 4
  164. attribute: material._EmissionMap_ST.x
  165. path: BasketballLine01
  166. classID: 23
  167. script: {fileID: 0}
  168. - curve:
  169. serializedVersion: 2
  170. m_Curve:
  171. - serializedVersion: 3
  172. time: 0.95
  173. value: 1
  174. inSlope: 0
  175. outSlope: 0
  176. tangentMode: 69
  177. weightedMode: 0
  178. inWeight: 0.33333334
  179. outWeight: 0.33333334
  180. - serializedVersion: 3
  181. time: 2.0666666
  182. value: 1
  183. inSlope: -0
  184. outSlope: 0
  185. tangentMode: 69
  186. weightedMode: 0
  187. inWeight: 0.33333334
  188. outWeight: 0.33333334
  189. - serializedVersion: 3
  190. time: 3.3166666
  191. value: 1
  192. inSlope: -0
  193. outSlope: 0
  194. tangentMode: 69
  195. weightedMode: 0
  196. inWeight: 0.33333334
  197. outWeight: 0.33333334
  198. - serializedVersion: 3
  199. time: 3.95
  200. value: 1
  201. inSlope: -0
  202. outSlope: 0
  203. tangentMode: 69
  204. weightedMode: 0
  205. inWeight: 0.33333334
  206. outWeight: 0.33333334
  207. m_PreInfinity: 2
  208. m_PostInfinity: 2
  209. m_RotationOrder: 4
  210. attribute: material._EmissionMap_ST.y
  211. path: BasketballLine01
  212. classID: 23
  213. script: {fileID: 0}
  214. - curve:
  215. serializedVersion: 2
  216. m_Curve:
  217. - serializedVersion: 3
  218. time: 0.95
  219. value: 0.18
  220. inSlope: 0
  221. outSlope: 1.6208956
  222. tangentMode: 69
  223. weightedMode: 0
  224. inWeight: 0.33333334
  225. outWeight: 0.33333334
  226. - serializedVersion: 3
  227. time: 2.0666666
  228. value: 1.99
  229. inSlope: 1.6208956
  230. outSlope: 0.83893794
  231. tangentMode: 69
  232. weightedMode: 0
  233. inWeight: 0.33333334
  234. outWeight: 0.33333334
  235. - serializedVersion: 3
  236. time: 3.3166666
  237. value: 3.0386724
  238. inSlope: 0.83893794
  239. outSlope: 0.838938
  240. tangentMode: 69
  241. weightedMode: 0
  242. inWeight: 0.33333334
  243. outWeight: 0.33333334
  244. - serializedVersion: 3
  245. time: 3.95
  246. value: 3.57
  247. inSlope: 0.838938
  248. outSlope: 0
  249. tangentMode: 69
  250. weightedMode: 0
  251. inWeight: 0.33333334
  252. outWeight: 0.33333334
  253. m_PreInfinity: 2
  254. m_PostInfinity: 2
  255. m_RotationOrder: 4
  256. attribute: material._EmissionMap_ST.z
  257. path: BasketballLine01
  258. classID: 23
  259. script: {fileID: 0}
  260. - curve:
  261. serializedVersion: 2
  262. m_Curve:
  263. - serializedVersion: 3
  264. time: 0.95
  265. value: 0
  266. inSlope: 0
  267. outSlope: 0
  268. tangentMode: 69
  269. weightedMode: 0
  270. inWeight: 0.33333334
  271. outWeight: 0.33333334
  272. - serializedVersion: 3
  273. time: 2.0666666
  274. value: 0
  275. inSlope: -0
  276. outSlope: 0
  277. tangentMode: 69
  278. weightedMode: 0
  279. inWeight: 0.33333334
  280. outWeight: 0.33333334
  281. - serializedVersion: 3
  282. time: 3.3166666
  283. value: 0
  284. inSlope: -0
  285. outSlope: 0
  286. tangentMode: 69
  287. weightedMode: 0
  288. inWeight: 0.33333334
  289. outWeight: 0.33333334
  290. - serializedVersion: 3
  291. time: 3.95
  292. value: 0
  293. inSlope: -0
  294. outSlope: 0
  295. tangentMode: 69
  296. weightedMode: 0
  297. inWeight: 0.33333334
  298. outWeight: 0.33333334
  299. m_PreInfinity: 2
  300. m_PostInfinity: 2
  301. m_RotationOrder: 4
  302. attribute: material._EmissionMap_ST.w
  303. path: BasketballLine01
  304. classID: 23
  305. script: {fileID: 0}
  306. - curve:
  307. serializedVersion: 2
  308. m_Curve:
  309. - serializedVersion: 3
  310. time: 0.95
  311. value: 1
  312. inSlope: 0
  313. outSlope: 0
  314. tangentMode: 69
  315. weightedMode: 0
  316. inWeight: 0.33333334
  317. outWeight: 0.33333334
  318. - serializedVersion: 3
  319. time: 2.0666666
  320. value: 1
  321. inSlope: -0
  322. outSlope: 0
  323. tangentMode: 69
  324. weightedMode: 0
  325. inWeight: 0.33333334
  326. outWeight: 0.33333334
  327. - serializedVersion: 3
  328. time: 3.3166666
  329. value: 1
  330. inSlope: -0
  331. outSlope: 0
  332. tangentMode: 69
  333. weightedMode: 0
  334. inWeight: 0.33333334
  335. outWeight: 0.33333334
  336. - serializedVersion: 3
  337. time: 3.95
  338. value: 1
  339. inSlope: -0
  340. outSlope: 0
  341. tangentMode: 69
  342. weightedMode: 0
  343. inWeight: 0.33333334
  344. outWeight: 0.33333334
  345. m_PreInfinity: 2
  346. m_PostInfinity: 2
  347. m_RotationOrder: 4
  348. attribute: material._MainTex_ST.x
  349. path: BasketballLine01
  350. classID: 23
  351. script: {fileID: 0}
  352. - curve:
  353. serializedVersion: 2
  354. m_Curve:
  355. - serializedVersion: 3
  356. time: 0.95
  357. value: 1
  358. inSlope: 0
  359. outSlope: 0
  360. tangentMode: 69
  361. weightedMode: 0
  362. inWeight: 0.33333334
  363. outWeight: 0.33333334
  364. - serializedVersion: 3
  365. time: 2.0666666
  366. value: 1
  367. inSlope: -0
  368. outSlope: 0
  369. tangentMode: 69
  370. weightedMode: 0
  371. inWeight: 0.33333334
  372. outWeight: 0.33333334
  373. - serializedVersion: 3
  374. time: 3.3166666
  375. value: 1
  376. inSlope: -0
  377. outSlope: 0
  378. tangentMode: 69
  379. weightedMode: 0
  380. inWeight: 0.33333334
  381. outWeight: 0.33333334
  382. - serializedVersion: 3
  383. time: 3.95
  384. value: 1
  385. inSlope: -0
  386. outSlope: 0
  387. tangentMode: 69
  388. weightedMode: 0
  389. inWeight: 0.33333334
  390. outWeight: 0.33333334
  391. m_PreInfinity: 2
  392. m_PostInfinity: 2
  393. m_RotationOrder: 4
  394. attribute: material._MainTex_ST.y
  395. path: BasketballLine01
  396. classID: 23
  397. script: {fileID: 0}
  398. - curve:
  399. serializedVersion: 2
  400. m_Curve:
  401. - serializedVersion: 3
  402. time: 0.95
  403. value: 0.18
  404. inSlope: 0
  405. outSlope: 1.6208956
  406. tangentMode: 69
  407. weightedMode: 0
  408. inWeight: 0.33333334
  409. outWeight: 0.33333334
  410. - serializedVersion: 3
  411. time: 2.0666666
  412. value: 1.99
  413. inSlope: 1.6208956
  414. outSlope: 0.83893794
  415. tangentMode: 69
  416. weightedMode: 0
  417. inWeight: 0.33333334
  418. outWeight: 0.33333334
  419. - serializedVersion: 3
  420. time: 3.3166666
  421. value: 3.0386724
  422. inSlope: 0.83893794
  423. outSlope: 0.838938
  424. tangentMode: 69
  425. weightedMode: 0
  426. inWeight: 0.33333334
  427. outWeight: 0.33333334
  428. - serializedVersion: 3
  429. time: 3.95
  430. value: 3.57
  431. inSlope: 0.838938
  432. outSlope: 0
  433. tangentMode: 69
  434. weightedMode: 0
  435. inWeight: 0.33333334
  436. outWeight: 0.33333334
  437. m_PreInfinity: 2
  438. m_PostInfinity: 2
  439. m_RotationOrder: 4
  440. attribute: material._MainTex_ST.z
  441. path: BasketballLine01
  442. classID: 23
  443. script: {fileID: 0}
  444. - curve:
  445. serializedVersion: 2
  446. m_Curve:
  447. - serializedVersion: 3
  448. time: 0.95
  449. value: 0
  450. inSlope: 0
  451. outSlope: 0
  452. tangentMode: 69
  453. weightedMode: 0
  454. inWeight: 0.33333334
  455. outWeight: 0.33333334
  456. - serializedVersion: 3
  457. time: 2.0666666
  458. value: 0
  459. inSlope: -0
  460. outSlope: 0
  461. tangentMode: 69
  462. weightedMode: 0
  463. inWeight: 0.33333334
  464. outWeight: 0.33333334
  465. - serializedVersion: 3
  466. time: 3.3166666
  467. value: 0
  468. inSlope: -0
  469. outSlope: 0
  470. tangentMode: 69
  471. weightedMode: 0
  472. inWeight: 0.33333334
  473. outWeight: 0.33333334
  474. - serializedVersion: 3
  475. time: 3.95
  476. value: 0
  477. inSlope: -0
  478. outSlope: 0
  479. tangentMode: 69
  480. weightedMode: 0
  481. inWeight: 0.33333334
  482. outWeight: 0.33333334
  483. m_PreInfinity: 2
  484. m_PostInfinity: 2
  485. m_RotationOrder: 4
  486. attribute: material._MainTex_ST.w
  487. path: BasketballLine01
  488. classID: 23
  489. script: {fileID: 0}
  490. - curve:
  491. serializedVersion: 2
  492. m_Curve:
  493. - serializedVersion: 3
  494. time: 0
  495. value: 0
  496. inSlope: Infinity
  497. outSlope: Infinity
  498. tangentMode: 103
  499. weightedMode: 0
  500. inWeight: 0
  501. outWeight: 0
  502. - serializedVersion: 3
  503. time: 0.95
  504. value: 1
  505. inSlope: Infinity
  506. outSlope: Infinity
  507. tangentMode: 103
  508. weightedMode: 0
  509. inWeight: 0
  510. outWeight: 0
  511. - serializedVersion: 3
  512. time: 3.95
  513. value: 1
  514. inSlope: Infinity
  515. outSlope: Infinity
  516. tangentMode: 103
  517. weightedMode: 0
  518. inWeight: 0
  519. outWeight: 0
  520. m_PreInfinity: 2
  521. m_PostInfinity: 2
  522. m_RotationOrder: 4
  523. attribute: m_IsActive
  524. path: BasketballLine02
  525. classID: 1
  526. script: {fileID: 0}
  527. - curve:
  528. serializedVersion: 2
  529. m_Curve:
  530. - serializedVersion: 3
  531. time: 0.95
  532. value: 0.24
  533. inSlope: 0
  534. outSlope: 0
  535. tangentMode: 69
  536. weightedMode: 0
  537. inWeight: 0.33333334
  538. outWeight: 0.33333334
  539. - serializedVersion: 3
  540. time: 2.0666666
  541. value: 0.24
  542. inSlope: -0
  543. outSlope: 0
  544. tangentMode: 69
  545. weightedMode: 0
  546. inWeight: 0.33333334
  547. outWeight: 0.33333334
  548. - serializedVersion: 3
  549. time: 3.95
  550. value: 0.24
  551. inSlope: -0
  552. outSlope: 0
  553. tangentMode: 69
  554. weightedMode: 0
  555. inWeight: 0.33333334
  556. outWeight: 0.33333334
  557. m_PreInfinity: 2
  558. m_PostInfinity: 2
  559. m_RotationOrder: 4
  560. attribute: material._EmissionMap_ST.x
  561. path: BasketballLine02
  562. classID: 23
  563. script: {fileID: 0}
  564. - curve:
  565. serializedVersion: 2
  566. m_Curve:
  567. - serializedVersion: 3
  568. time: 0.95
  569. value: 1
  570. inSlope: 0
  571. outSlope: 0
  572. tangentMode: 69
  573. weightedMode: 0
  574. inWeight: 0.33333334
  575. outWeight: 0.33333334
  576. - serializedVersion: 3
  577. time: 2.0666666
  578. value: 1
  579. inSlope: -0
  580. outSlope: 0
  581. tangentMode: 69
  582. weightedMode: 0
  583. inWeight: 0.33333334
  584. outWeight: 0.33333334
  585. - serializedVersion: 3
  586. time: 3.95
  587. value: 1
  588. inSlope: -0
  589. outSlope: 0
  590. tangentMode: 69
  591. weightedMode: 0
  592. inWeight: 0.33333334
  593. outWeight: 0.33333334
  594. m_PreInfinity: 2
  595. m_PostInfinity: 2
  596. m_RotationOrder: 4
  597. attribute: material._EmissionMap_ST.y
  598. path: BasketballLine02
  599. classID: 23
  600. script: {fileID: 0}
  601. - curve:
  602. serializedVersion: 2
  603. m_Curve:
  604. - serializedVersion: 3
  605. time: 0.95
  606. value: -0.45
  607. inSlope: 0
  608. outSlope: 0.55522394
  609. tangentMode: 69
  610. weightedMode: 0
  611. inWeight: 0.33333334
  612. outWeight: 0.33333334
  613. - serializedVersion: 3
  614. time: 2.0666666
  615. value: 0.17
  616. inSlope: 0.55522394
  617. outSlope: 0.93982303
  618. tangentMode: 69
  619. weightedMode: 0
  620. inWeight: 0.33333334
  621. outWeight: 0.33333334
  622. - serializedVersion: 3
  623. time: 3.95
  624. value: 1.94
  625. inSlope: 0.93982303
  626. outSlope: 0
  627. tangentMode: 69
  628. weightedMode: 0
  629. inWeight: 0.33333334
  630. outWeight: 0.33333334
  631. m_PreInfinity: 2
  632. m_PostInfinity: 2
  633. m_RotationOrder: 4
  634. attribute: material._EmissionMap_ST.z
  635. path: BasketballLine02
  636. classID: 23
  637. script: {fileID: 0}
  638. - curve:
  639. serializedVersion: 2
  640. m_Curve:
  641. - serializedVersion: 3
  642. time: 0.95
  643. value: 0
  644. inSlope: 0
  645. outSlope: 0
  646. tangentMode: 69
  647. weightedMode: 0
  648. inWeight: 0.33333334
  649. outWeight: 0.33333334
  650. - serializedVersion: 3
  651. time: 2.0666666
  652. value: 0
  653. inSlope: -0
  654. outSlope: 0
  655. tangentMode: 69
  656. weightedMode: 0
  657. inWeight: 0.33333334
  658. outWeight: 0.33333334
  659. - serializedVersion: 3
  660. time: 3.95
  661. value: 0
  662. inSlope: -0
  663. outSlope: 0
  664. tangentMode: 69
  665. weightedMode: 0
  666. inWeight: 0.33333334
  667. outWeight: 0.33333334
  668. m_PreInfinity: 2
  669. m_PostInfinity: 2
  670. m_RotationOrder: 4
  671. attribute: material._EmissionMap_ST.w
  672. path: BasketballLine02
  673. classID: 23
  674. script: {fileID: 0}
  675. - curve:
  676. serializedVersion: 2
  677. m_Curve:
  678. - serializedVersion: 3
  679. time: 0.95
  680. value: 0.24
  681. inSlope: 0
  682. outSlope: 0
  683. tangentMode: 69
  684. weightedMode: 0
  685. inWeight: 0.33333334
  686. outWeight: 0.33333334
  687. - serializedVersion: 3
  688. time: 2.0666666
  689. value: 0.24
  690. inSlope: -0
  691. outSlope: 0
  692. tangentMode: 69
  693. weightedMode: 0
  694. inWeight: 0.33333334
  695. outWeight: 0.33333334
  696. - serializedVersion: 3
  697. time: 3.95
  698. value: 0.24
  699. inSlope: -0
  700. outSlope: 0
  701. tangentMode: 69
  702. weightedMode: 0
  703. inWeight: 0.33333334
  704. outWeight: 0.33333334
  705. m_PreInfinity: 2
  706. m_PostInfinity: 2
  707. m_RotationOrder: 4
  708. attribute: material._MainTex_ST.x
  709. path: BasketballLine02
  710. classID: 23
  711. script: {fileID: 0}
  712. - curve:
  713. serializedVersion: 2
  714. m_Curve:
  715. - serializedVersion: 3
  716. time: 0.95
  717. value: 1
  718. inSlope: 0
  719. outSlope: 0
  720. tangentMode: 69
  721. weightedMode: 0
  722. inWeight: 0.33333334
  723. outWeight: 0.33333334
  724. - serializedVersion: 3
  725. time: 2.0666666
  726. value: 1
  727. inSlope: -0
  728. outSlope: 0
  729. tangentMode: 69
  730. weightedMode: 0
  731. inWeight: 0.33333334
  732. outWeight: 0.33333334
  733. - serializedVersion: 3
  734. time: 3.95
  735. value: 1
  736. inSlope: -0
  737. outSlope: 0
  738. tangentMode: 69
  739. weightedMode: 0
  740. inWeight: 0.33333334
  741. outWeight: 0.33333334
  742. m_PreInfinity: 2
  743. m_PostInfinity: 2
  744. m_RotationOrder: 4
  745. attribute: material._MainTex_ST.y
  746. path: BasketballLine02
  747. classID: 23
  748. script: {fileID: 0}
  749. - curve:
  750. serializedVersion: 2
  751. m_Curve:
  752. - serializedVersion: 3
  753. time: 0.95
  754. value: -0.45
  755. inSlope: 0
  756. outSlope: 0.55522394
  757. tangentMode: 69
  758. weightedMode: 0
  759. inWeight: 0.33333334
  760. outWeight: 0.33333334
  761. - serializedVersion: 3
  762. time: 2.0666666
  763. value: 0.17
  764. inSlope: 0.55522394
  765. outSlope: 0.93982303
  766. tangentMode: 69
  767. weightedMode: 0
  768. inWeight: 0.33333334
  769. outWeight: 0.33333334
  770. - serializedVersion: 3
  771. time: 3.95
  772. value: 1.94
  773. inSlope: 0.93982303
  774. outSlope: 0
  775. tangentMode: 69
  776. weightedMode: 0
  777. inWeight: 0.33333334
  778. outWeight: 0.33333334
  779. m_PreInfinity: 2
  780. m_PostInfinity: 2
  781. m_RotationOrder: 4
  782. attribute: material._MainTex_ST.z
  783. path: BasketballLine02
  784. classID: 23
  785. script: {fileID: 0}
  786. - curve:
  787. serializedVersion: 2
  788. m_Curve:
  789. - serializedVersion: 3
  790. time: 0.95
  791. value: 0
  792. inSlope: 0
  793. outSlope: 0
  794. tangentMode: 69
  795. weightedMode: 0
  796. inWeight: 0.33333334
  797. outWeight: 0.33333334
  798. - serializedVersion: 3
  799. time: 2.0666666
  800. value: 0
  801. inSlope: -0
  802. outSlope: 0
  803. tangentMode: 69
  804. weightedMode: 0
  805. inWeight: 0.33333334
  806. outWeight: 0.33333334
  807. - serializedVersion: 3
  808. time: 3.95
  809. value: 0
  810. inSlope: -0
  811. outSlope: 0
  812. tangentMode: 69
  813. weightedMode: 0
  814. inWeight: 0.33333334
  815. outWeight: 0.33333334
  816. m_PreInfinity: 2
  817. m_PostInfinity: 2
  818. m_RotationOrder: 4
  819. attribute: material._MainTex_ST.w
  820. path: BasketballLine02
  821. classID: 23
  822. script: {fileID: 0}
  823. - curve:
  824. serializedVersion: 2
  825. m_Curve:
  826. - serializedVersion: 3
  827. time: 0
  828. value: 0
  829. inSlope: Infinity
  830. outSlope: Infinity
  831. tangentMode: 103
  832. weightedMode: 0
  833. inWeight: 0
  834. outWeight: 0
  835. - serializedVersion: 3
  836. time: 0.95
  837. value: 1
  838. inSlope: Infinity
  839. outSlope: Infinity
  840. tangentMode: 103
  841. weightedMode: 0
  842. inWeight: 0
  843. outWeight: 0
  844. - serializedVersion: 3
  845. time: 3.95
  846. value: 1
  847. inSlope: Infinity
  848. outSlope: Infinity
  849. tangentMode: 103
  850. weightedMode: 0
  851. inWeight: 0
  852. outWeight: 0
  853. m_PreInfinity: 2
  854. m_PostInfinity: 2
  855. m_RotationOrder: 4
  856. attribute: m_IsActive
  857. path: BasketballLine03
  858. classID: 1
  859. script: {fileID: 0}
  860. - curve:
  861. serializedVersion: 2
  862. m_Curve:
  863. - serializedVersion: 3
  864. time: 0.95
  865. value: 1
  866. inSlope: 0
  867. outSlope: 0
  868. tangentMode: 136
  869. weightedMode: 0
  870. inWeight: 0.33333334
  871. outWeight: 0.33333334
  872. - serializedVersion: 3
  873. time: 2.1833334
  874. value: 1
  875. inSlope: 0
  876. outSlope: 0
  877. tangentMode: 136
  878. weightedMode: 0
  879. inWeight: 0.33333334
  880. outWeight: 0.33333334
  881. - serializedVersion: 3
  882. time: 2.4333334
  883. value: 1
  884. inSlope: 0
  885. outSlope: 0
  886. tangentMode: 136
  887. weightedMode: 0
  888. inWeight: 0.33333334
  889. outWeight: 0.33333334
  890. - serializedVersion: 3
  891. time: 3.95
  892. value: 1
  893. inSlope: 0
  894. outSlope: 0
  895. tangentMode: 136
  896. weightedMode: 0
  897. inWeight: 0.33333334
  898. outWeight: 0.33333334
  899. m_PreInfinity: 2
  900. m_PostInfinity: 2
  901. m_RotationOrder: 4
  902. attribute: material._Color.r
  903. path: BasketballLine03
  904. classID: 23
  905. script: {fileID: 0}
  906. - curve:
  907. serializedVersion: 2
  908. m_Curve:
  909. - serializedVersion: 3
  910. time: 0.95
  911. value: 1
  912. inSlope: 0
  913. outSlope: 0
  914. tangentMode: 136
  915. weightedMode: 0
  916. inWeight: 0.33333334
  917. outWeight: 0.33333334
  918. - serializedVersion: 3
  919. time: 2.1833334
  920. value: 1
  921. inSlope: 0
  922. outSlope: 0
  923. tangentMode: 136
  924. weightedMode: 0
  925. inWeight: 0.33333334
  926. outWeight: 0.33333334
  927. - serializedVersion: 3
  928. time: 2.4333334
  929. value: 1
  930. inSlope: 0
  931. outSlope: 0
  932. tangentMode: 136
  933. weightedMode: 0
  934. inWeight: 0.33333334
  935. outWeight: 0.33333334
  936. - serializedVersion: 3
  937. time: 3.95
  938. value: 1
  939. inSlope: 0
  940. outSlope: 0
  941. tangentMode: 136
  942. weightedMode: 0
  943. inWeight: 0.33333334
  944. outWeight: 0.33333334
  945. m_PreInfinity: 2
  946. m_PostInfinity: 2
  947. m_RotationOrder: 4
  948. attribute: material._Color.g
  949. path: BasketballLine03
  950. classID: 23
  951. script: {fileID: 0}
  952. - curve:
  953. serializedVersion: 2
  954. m_Curve:
  955. - serializedVersion: 3
  956. time: 0.95
  957. value: 1
  958. inSlope: 0
  959. outSlope: 0
  960. tangentMode: 136
  961. weightedMode: 0
  962. inWeight: 0.33333334
  963. outWeight: 0.33333334
  964. - serializedVersion: 3
  965. time: 2.1833334
  966. value: 1
  967. inSlope: 0
  968. outSlope: 0
  969. tangentMode: 136
  970. weightedMode: 0
  971. inWeight: 0.33333334
  972. outWeight: 0.33333334
  973. - serializedVersion: 3
  974. time: 2.4333334
  975. value: 1
  976. inSlope: 0
  977. outSlope: 0
  978. tangentMode: 136
  979. weightedMode: 0
  980. inWeight: 0.33333334
  981. outWeight: 0.33333334
  982. - serializedVersion: 3
  983. time: 3.95
  984. value: 1
  985. inSlope: 0
  986. outSlope: 0
  987. tangentMode: 136
  988. weightedMode: 0
  989. inWeight: 0.33333334
  990. outWeight: 0.33333334
  991. m_PreInfinity: 2
  992. m_PostInfinity: 2
  993. m_RotationOrder: 4
  994. attribute: material._Color.b
  995. path: BasketballLine03
  996. classID: 23
  997. script: {fileID: 0}
  998. - curve:
  999. serializedVersion: 2
  1000. m_Curve:
  1001. - serializedVersion: 3
  1002. time: 0.95
  1003. value: 0
  1004. inSlope: 0
  1005. outSlope: 0
  1006. tangentMode: 136
  1007. weightedMode: 0
  1008. inWeight: 0.33333334
  1009. outWeight: 0.33333334
  1010. - serializedVersion: 3
  1011. time: 2.1833334
  1012. value: 0.23921569
  1013. inSlope: 0.25908792
  1014. outSlope: 0.25908792
  1015. tangentMode: 136
  1016. weightedMode: 0
  1017. inWeight: 0.33333334
  1018. outWeight: 0.33333334
  1019. - serializedVersion: 3
  1020. time: 2.4333334
  1021. value: 0.38431373
  1022. inSlope: 0
  1023. outSlope: 0
  1024. tangentMode: 136
  1025. weightedMode: 0
  1026. inWeight: 0.33333334
  1027. outWeight: 0.33333334
  1028. - serializedVersion: 3
  1029. time: 3.95
  1030. value: 0.38431373
  1031. inSlope: 0
  1032. outSlope: 0
  1033. tangentMode: 136
  1034. weightedMode: 0
  1035. inWeight: 0.33333334
  1036. outWeight: 0.33333334
  1037. m_PreInfinity: 2
  1038. m_PostInfinity: 2
  1039. m_RotationOrder: 4
  1040. attribute: material._Color.a
  1041. path: BasketballLine03
  1042. classID: 23
  1043. script: {fileID: 0}
  1044. - curve:
  1045. serializedVersion: 2
  1046. m_Curve:
  1047. - serializedVersion: 3
  1048. time: 2.1833334
  1049. value: 1.02
  1050. inSlope: 0
  1051. outSlope: 0
  1052. tangentMode: 136
  1053. weightedMode: 0
  1054. inWeight: 0.33333334
  1055. outWeight: 0.33333334
  1056. - serializedVersion: 3
  1057. time: 2.4333334
  1058. value: 0.01
  1059. inSlope: 0
  1060. outSlope: 0
  1061. tangentMode: 136
  1062. weightedMode: 0
  1063. inWeight: 0.33333334
  1064. outWeight: 0.33333334
  1065. - serializedVersion: 3
  1066. time: 3.95
  1067. value: 0.01
  1068. inSlope: 0
  1069. outSlope: 0
  1070. tangentMode: 136
  1071. weightedMode: 0
  1072. inWeight: 0.33333334
  1073. outWeight: 0.33333334
  1074. m_PreInfinity: 2
  1075. m_PostInfinity: 2
  1076. m_RotationOrder: 4
  1077. attribute: material._EmissionMap_ST.x
  1078. path: BasketballLine03
  1079. classID: 23
  1080. script: {fileID: 0}
  1081. - curve:
  1082. serializedVersion: 2
  1083. m_Curve:
  1084. - serializedVersion: 3
  1085. time: 2.1833334
  1086. value: 1
  1087. inSlope: 0
  1088. outSlope: 0
  1089. tangentMode: 136
  1090. weightedMode: 0
  1091. inWeight: 0.33333334
  1092. outWeight: 0.33333334
  1093. - serializedVersion: 3
  1094. time: 2.4333334
  1095. value: 1
  1096. inSlope: 0
  1097. outSlope: 0
  1098. tangentMode: 136
  1099. weightedMode: 0
  1100. inWeight: 0.33333334
  1101. outWeight: 0.33333334
  1102. - serializedVersion: 3
  1103. time: 3.95
  1104. value: 1
  1105. inSlope: 0
  1106. outSlope: 0
  1107. tangentMode: 136
  1108. weightedMode: 0
  1109. inWeight: 0.33333334
  1110. outWeight: 0.33333334
  1111. m_PreInfinity: 2
  1112. m_PostInfinity: 2
  1113. m_RotationOrder: 4
  1114. attribute: material._EmissionMap_ST.y
  1115. path: BasketballLine03
  1116. classID: 23
  1117. script: {fileID: 0}
  1118. - curve:
  1119. serializedVersion: 2
  1120. m_Curve:
  1121. - serializedVersion: 3
  1122. time: 2.1833334
  1123. value: 1
  1124. inSlope: 0
  1125. outSlope: 0
  1126. tangentMode: 136
  1127. weightedMode: 0
  1128. inWeight: 0.33333334
  1129. outWeight: 0.33333334
  1130. - serializedVersion: 3
  1131. time: 2.4333334
  1132. value: 1
  1133. inSlope: 0
  1134. outSlope: 0
  1135. tangentMode: 136
  1136. weightedMode: 0
  1137. inWeight: 0.33333334
  1138. outWeight: 0.33333334
  1139. - serializedVersion: 3
  1140. time: 3.95
  1141. value: 1
  1142. inSlope: 0
  1143. outSlope: 0
  1144. tangentMode: 136
  1145. weightedMode: 0
  1146. inWeight: 0.33333334
  1147. outWeight: 0.33333334
  1148. m_PreInfinity: 2
  1149. m_PostInfinity: 2
  1150. m_RotationOrder: 4
  1151. attribute: material._EmissionMap_ST.z
  1152. path: BasketballLine03
  1153. classID: 23
  1154. script: {fileID: 0}
  1155. - curve:
  1156. serializedVersion: 2
  1157. m_Curve:
  1158. - serializedVersion: 3
  1159. time: 2.1833334
  1160. value: 0
  1161. inSlope: 0
  1162. outSlope: 0
  1163. tangentMode: 136
  1164. weightedMode: 0
  1165. inWeight: 0.33333334
  1166. outWeight: 0.33333334
  1167. - serializedVersion: 3
  1168. time: 2.4333334
  1169. value: 0
  1170. inSlope: 0
  1171. outSlope: 0
  1172. tangentMode: 136
  1173. weightedMode: 0
  1174. inWeight: 0.33333334
  1175. outWeight: 0.33333334
  1176. - serializedVersion: 3
  1177. time: 3.95
  1178. value: 0
  1179. inSlope: 0
  1180. outSlope: 0
  1181. tangentMode: 136
  1182. weightedMode: 0
  1183. inWeight: 0.33333334
  1184. outWeight: 0.33333334
  1185. m_PreInfinity: 2
  1186. m_PostInfinity: 2
  1187. m_RotationOrder: 4
  1188. attribute: material._EmissionMap_ST.w
  1189. path: BasketballLine03
  1190. classID: 23
  1191. script: {fileID: 0}
  1192. - curve:
  1193. serializedVersion: 2
  1194. m_Curve:
  1195. - serializedVersion: 3
  1196. time: 2.1833334
  1197. value: 1.02
  1198. inSlope: 0
  1199. outSlope: 0
  1200. tangentMode: 136
  1201. weightedMode: 0
  1202. inWeight: 0.33333334
  1203. outWeight: 0.33333334
  1204. - serializedVersion: 3
  1205. time: 2.4333334
  1206. value: 0.01
  1207. inSlope: 0
  1208. outSlope: 0
  1209. tangentMode: 136
  1210. weightedMode: 0
  1211. inWeight: 0.33333334
  1212. outWeight: 0.33333334
  1213. - serializedVersion: 3
  1214. time: 3.95
  1215. value: 0.01
  1216. inSlope: 0
  1217. outSlope: 0
  1218. tangentMode: 136
  1219. weightedMode: 0
  1220. inWeight: 0.33333334
  1221. outWeight: 0.33333334
  1222. m_PreInfinity: 2
  1223. m_PostInfinity: 2
  1224. m_RotationOrder: 4
  1225. attribute: material._MainTex_ST.x
  1226. path: BasketballLine03
  1227. classID: 23
  1228. script: {fileID: 0}
  1229. - curve:
  1230. serializedVersion: 2
  1231. m_Curve:
  1232. - serializedVersion: 3
  1233. time: 2.1833334
  1234. value: 1
  1235. inSlope: 0
  1236. outSlope: 0
  1237. tangentMode: 136
  1238. weightedMode: 0
  1239. inWeight: 0.33333334
  1240. outWeight: 0.33333334
  1241. - serializedVersion: 3
  1242. time: 2.4333334
  1243. value: 1
  1244. inSlope: 0
  1245. outSlope: 0
  1246. tangentMode: 136
  1247. weightedMode: 0
  1248. inWeight: 0.33333334
  1249. outWeight: 0.33333334
  1250. - serializedVersion: 3
  1251. time: 3.95
  1252. value: 1
  1253. inSlope: 0
  1254. outSlope: 0
  1255. tangentMode: 136
  1256. weightedMode: 0
  1257. inWeight: 0.33333334
  1258. outWeight: 0.33333334
  1259. m_PreInfinity: 2
  1260. m_PostInfinity: 2
  1261. m_RotationOrder: 4
  1262. attribute: material._MainTex_ST.y
  1263. path: BasketballLine03
  1264. classID: 23
  1265. script: {fileID: 0}
  1266. - curve:
  1267. serializedVersion: 2
  1268. m_Curve:
  1269. - serializedVersion: 3
  1270. time: 2.1833334
  1271. value: 1
  1272. inSlope: 0
  1273. outSlope: 0
  1274. tangentMode: 136
  1275. weightedMode: 0
  1276. inWeight: 0.33333334
  1277. outWeight: 0.33333334
  1278. - serializedVersion: 3
  1279. time: 2.4333334
  1280. value: 1
  1281. inSlope: 0
  1282. outSlope: 0
  1283. tangentMode: 136
  1284. weightedMode: 0
  1285. inWeight: 0.33333334
  1286. outWeight: 0.33333334
  1287. - serializedVersion: 3
  1288. time: 3.95
  1289. value: 1
  1290. inSlope: 0
  1291. outSlope: 0
  1292. tangentMode: 136
  1293. weightedMode: 0
  1294. inWeight: 0.33333334
  1295. outWeight: 0.33333334
  1296. m_PreInfinity: 2
  1297. m_PostInfinity: 2
  1298. m_RotationOrder: 4
  1299. attribute: material._MainTex_ST.z
  1300. path: BasketballLine03
  1301. classID: 23
  1302. script: {fileID: 0}
  1303. - curve:
  1304. serializedVersion: 2
  1305. m_Curve:
  1306. - serializedVersion: 3
  1307. time: 2.1833334
  1308. value: 0
  1309. inSlope: 0
  1310. outSlope: 0
  1311. tangentMode: 136
  1312. weightedMode: 0
  1313. inWeight: 0.33333334
  1314. outWeight: 0.33333334
  1315. - serializedVersion: 3
  1316. time: 2.4333334
  1317. value: 0
  1318. inSlope: 0
  1319. outSlope: 0
  1320. tangentMode: 136
  1321. weightedMode: 0
  1322. inWeight: 0.33333334
  1323. outWeight: 0.33333334
  1324. - serializedVersion: 3
  1325. time: 3.95
  1326. value: 0
  1327. inSlope: 0
  1328. outSlope: 0
  1329. tangentMode: 136
  1330. weightedMode: 0
  1331. inWeight: 0.33333334
  1332. outWeight: 0.33333334
  1333. m_PreInfinity: 2
  1334. m_PostInfinity: 2
  1335. m_RotationOrder: 4
  1336. attribute: material._MainTex_ST.w
  1337. path: BasketballLine03
  1338. classID: 23
  1339. script: {fileID: 0}
  1340. - curve:
  1341. serializedVersion: 2
  1342. m_Curve:
  1343. - serializedVersion: 3
  1344. time: 0.95
  1345. value: 1
  1346. inSlope: Infinity
  1347. outSlope: Infinity
  1348. tangentMode: 103
  1349. weightedMode: 0
  1350. inWeight: 0
  1351. outWeight: 0
  1352. - serializedVersion: 3
  1353. time: 2.3333333
  1354. value: 0
  1355. inSlope: Infinity
  1356. outSlope: Infinity
  1357. tangentMode: 103
  1358. weightedMode: 0
  1359. inWeight: 0
  1360. outWeight: 0
  1361. - serializedVersion: 3
  1362. time: 3.95
  1363. value: 0
  1364. inSlope: Infinity
  1365. outSlope: Infinity
  1366. tangentMode: 103
  1367. weightedMode: 0
  1368. inWeight: 0
  1369. outWeight: 0
  1370. m_PreInfinity: 2
  1371. m_PostInfinity: 2
  1372. m_RotationOrder: 4
  1373. attribute: m_IsActive
  1374. path: BasketballRojie
  1375. classID: 1
  1376. script: {fileID: 0}
  1377. - curve:
  1378. serializedVersion: 2
  1379. m_Curve:
  1380. - serializedVersion: 3
  1381. time: 0.95
  1382. value: 1
  1383. inSlope: 0
  1384. outSlope: 0
  1385. tangentMode: 136
  1386. weightedMode: 0
  1387. inWeight: 0.33333334
  1388. outWeight: 0.33333334
  1389. - serializedVersion: 3
  1390. time: 1.3166667
  1391. value: 1
  1392. inSlope: 0
  1393. outSlope: 0
  1394. tangentMode: 136
  1395. weightedMode: 0
  1396. inWeight: 0.33333334
  1397. outWeight: 0.33333334
  1398. - serializedVersion: 3
  1399. time: 2.3333333
  1400. value: 0
  1401. inSlope: 0
  1402. outSlope: 0
  1403. tangentMode: 136
  1404. weightedMode: 0
  1405. inWeight: 0.33333334
  1406. outWeight: 0.33333334
  1407. - serializedVersion: 3
  1408. time: 3.95
  1409. value: 0
  1410. inSlope: 0
  1411. outSlope: 0
  1412. tangentMode: 136
  1413. weightedMode: 0
  1414. inWeight: 0.33333334
  1415. outWeight: 0.33333334
  1416. m_PreInfinity: 2
  1417. m_PostInfinity: 2
  1418. m_RotationOrder: 4
  1419. attribute: material._Amount
  1420. path: BasketballRojie
  1421. classID: 23
  1422. script: {fileID: 0}
  1423. - curve:
  1424. serializedVersion: 2
  1425. m_Curve:
  1426. - serializedVersion: 3
  1427. time: 0
  1428. value: 0
  1429. inSlope: Infinity
  1430. outSlope: Infinity
  1431. tangentMode: 103
  1432. weightedMode: 0
  1433. inWeight: 0
  1434. outWeight: 0
  1435. - serializedVersion: 3
  1436. time: 0.21666667
  1437. value: 1
  1438. inSlope: Infinity
  1439. outSlope: Infinity
  1440. tangentMode: 103
  1441. weightedMode: 0
  1442. inWeight: 0
  1443. outWeight: 0
  1444. - serializedVersion: 3
  1445. time: 3.95
  1446. value: 1
  1447. inSlope: Infinity
  1448. outSlope: Infinity
  1449. tangentMode: 103
  1450. weightedMode: 0
  1451. inWeight: 0
  1452. outWeight: 0
  1453. m_PreInfinity: 2
  1454. m_PostInfinity: 2
  1455. m_RotationOrder: 4
  1456. attribute: m_IsActive
  1457. path: CC
  1458. classID: 1
  1459. script: {fileID: 0}
  1460. - curve:
  1461. serializedVersion: 2
  1462. m_Curve:
  1463. - serializedVersion: 3
  1464. time: 0
  1465. value: 0
  1466. inSlope: Infinity
  1467. outSlope: Infinity
  1468. tangentMode: 103
  1469. weightedMode: 0
  1470. inWeight: 0
  1471. outWeight: 0
  1472. - serializedVersion: 3
  1473. time: 0.8666667
  1474. value: 1
  1475. inSlope: Infinity
  1476. outSlope: Infinity
  1477. tangentMode: 103
  1478. weightedMode: 0
  1479. inWeight: 0
  1480. outWeight: 0
  1481. m_PreInfinity: 2
  1482. m_PostInfinity: 2
  1483. m_RotationOrder: 4
  1484. attribute: m_IsActive
  1485. path: GameObject
  1486. classID: 1
  1487. script: {fileID: 0}
  1488. - curve:
  1489. serializedVersion: 2
  1490. m_Curve:
  1491. - serializedVersion: 3
  1492. time: 1
  1493. value: 0
  1494. inSlope: 0
  1495. outSlope: 0
  1496. tangentMode: 136
  1497. weightedMode: 0
  1498. inWeight: 0.33333334
  1499. outWeight: 0.33333334
  1500. - serializedVersion: 3
  1501. time: 2.0833333
  1502. value: 1
  1503. inSlope: 0
  1504. outSlope: 0
  1505. tangentMode: 136
  1506. weightedMode: 0
  1507. inWeight: 0.33333334
  1508. outWeight: 0.33333334
  1509. m_PreInfinity: 2
  1510. m_PostInfinity: 2
  1511. m_RotationOrder: 4
  1512. attribute: material._Color.r
  1513. path: GameObject/lanqiu_fushitietu/Anim_001/ball
  1514. classID: 23
  1515. script: {fileID: 0}
  1516. - curve:
  1517. serializedVersion: 2
  1518. m_Curve:
  1519. - serializedVersion: 3
  1520. time: 1
  1521. value: 0
  1522. inSlope: 0
  1523. outSlope: 0
  1524. tangentMode: 136
  1525. weightedMode: 0
  1526. inWeight: 0.33333334
  1527. outWeight: 0.33333334
  1528. - serializedVersion: 3
  1529. time: 2.0833333
  1530. value: 1
  1531. inSlope: 0
  1532. outSlope: 0
  1533. tangentMode: 136
  1534. weightedMode: 0
  1535. inWeight: 0.33333334
  1536. outWeight: 0.33333334
  1537. m_PreInfinity: 2
  1538. m_PostInfinity: 2
  1539. m_RotationOrder: 4
  1540. attribute: material._Color.g
  1541. path: GameObject/lanqiu_fushitietu/Anim_001/ball
  1542. classID: 23
  1543. script: {fileID: 0}
  1544. - curve:
  1545. serializedVersion: 2
  1546. m_Curve:
  1547. - serializedVersion: 3
  1548. time: 1
  1549. value: 0
  1550. inSlope: 0
  1551. outSlope: 0
  1552. tangentMode: 136
  1553. weightedMode: 0
  1554. inWeight: 0.33333334
  1555. outWeight: 0.33333334
  1556. - serializedVersion: 3
  1557. time: 2.0833333
  1558. value: 1
  1559. inSlope: 0
  1560. outSlope: 0
  1561. tangentMode: 136
  1562. weightedMode: 0
  1563. inWeight: 0.33333334
  1564. outWeight: 0.33333334
  1565. m_PreInfinity: 2
  1566. m_PostInfinity: 2
  1567. m_RotationOrder: 4
  1568. attribute: material._Color.b
  1569. path: GameObject/lanqiu_fushitietu/Anim_001/ball
  1570. classID: 23
  1571. script: {fileID: 0}
  1572. - curve:
  1573. serializedVersion: 2
  1574. m_Curve:
  1575. - serializedVersion: 3
  1576. time: 1
  1577. value: 1
  1578. inSlope: 0
  1579. outSlope: 0
  1580. tangentMode: 136
  1581. weightedMode: 0
  1582. inWeight: 0.33333334
  1583. outWeight: 0.33333334
  1584. - serializedVersion: 3
  1585. time: 2.0833333
  1586. value: 1
  1587. inSlope: 0
  1588. outSlope: 0
  1589. tangentMode: 136
  1590. weightedMode: 0
  1591. inWeight: 0.33333334
  1592. outWeight: 0.33333334
  1593. m_PreInfinity: 2
  1594. m_PostInfinity: 2
  1595. m_RotationOrder: 4
  1596. attribute: material._Color.a
  1597. path: GameObject/lanqiu_fushitietu/Anim_001/ball
  1598. classID: 23
  1599. script: {fileID: 0}
  1600. - curve:
  1601. serializedVersion: 2
  1602. m_Curve:
  1603. - serializedVersion: 3
  1604. time: 1
  1605. value: 0
  1606. inSlope: 0
  1607. outSlope: 0
  1608. tangentMode: 136
  1609. weightedMode: 0
  1610. inWeight: 0.33333334
  1611. outWeight: 0.33333334
  1612. - serializedVersion: 3
  1613. time: 2.0833333
  1614. value: 1
  1615. inSlope: 0
  1616. outSlope: 0
  1617. tangentMode: 136
  1618. weightedMode: 0
  1619. inWeight: 0.33333334
  1620. outWeight: 0.33333334
  1621. m_PreInfinity: 2
  1622. m_PostInfinity: 2
  1623. m_RotationOrder: 4
  1624. attribute: material._Color.r
  1625. path: GameObject/lanqiu_fushitietu/Anim_002/WBP
  1626. classID: 137
  1627. script: {fileID: 0}
  1628. - curve:
  1629. serializedVersion: 2
  1630. m_Curve:
  1631. - serializedVersion: 3
  1632. time: 1
  1633. value: 0
  1634. inSlope: 0
  1635. outSlope: 0
  1636. tangentMode: 136
  1637. weightedMode: 0
  1638. inWeight: 0.33333334
  1639. outWeight: 0.33333334
  1640. - serializedVersion: 3
  1641. time: 2.0833333
  1642. value: 1
  1643. inSlope: 0
  1644. outSlope: 0
  1645. tangentMode: 136
  1646. weightedMode: 0
  1647. inWeight: 0.33333334
  1648. outWeight: 0.33333334
  1649. m_PreInfinity: 2
  1650. m_PostInfinity: 2
  1651. m_RotationOrder: 4
  1652. attribute: material._Color.g
  1653. path: GameObject/lanqiu_fushitietu/Anim_002/WBP
  1654. classID: 137
  1655. script: {fileID: 0}
  1656. - curve:
  1657. serializedVersion: 2
  1658. m_Curve:
  1659. - serializedVersion: 3
  1660. time: 1
  1661. value: 0
  1662. inSlope: 0
  1663. outSlope: 0
  1664. tangentMode: 136
  1665. weightedMode: 0
  1666. inWeight: 0.33333334
  1667. outWeight: 0.33333334
  1668. - serializedVersion: 3
  1669. time: 2.0833333
  1670. value: 1
  1671. inSlope: 0
  1672. outSlope: 0
  1673. tangentMode: 136
  1674. weightedMode: 0
  1675. inWeight: 0.33333334
  1676. outWeight: 0.33333334
  1677. m_PreInfinity: 2
  1678. m_PostInfinity: 2
  1679. m_RotationOrder: 4
  1680. attribute: material._Color.b
  1681. path: GameObject/lanqiu_fushitietu/Anim_002/WBP
  1682. classID: 137
  1683. script: {fileID: 0}
  1684. - curve:
  1685. serializedVersion: 2
  1686. m_Curve:
  1687. - serializedVersion: 3
  1688. time: 1
  1689. value: 1
  1690. inSlope: 0
  1691. outSlope: 0
  1692. tangentMode: 136
  1693. weightedMode: 0
  1694. inWeight: 0.33333334
  1695. outWeight: 0.33333334
  1696. - serializedVersion: 3
  1697. time: 2.0833333
  1698. value: 1
  1699. inSlope: 0
  1700. outSlope: 0
  1701. tangentMode: 136
  1702. weightedMode: 0
  1703. inWeight: 0.33333334
  1704. outWeight: 0.33333334
  1705. m_PreInfinity: 2
  1706. m_PostInfinity: 2
  1707. m_RotationOrder: 4
  1708. attribute: material._Color.a
  1709. path: GameObject/lanqiu_fushitietu/Anim_002/WBP
  1710. classID: 137
  1711. script: {fileID: 0}
  1712. - curve:
  1713. serializedVersion: 2
  1714. m_Curve:
  1715. - serializedVersion: 3
  1716. time: 1
  1717. value: 0
  1718. inSlope: 0
  1719. outSlope: 0
  1720. tangentMode: 136
  1721. weightedMode: 0
  1722. inWeight: 0.33333334
  1723. outWeight: 0.33333334
  1724. - serializedVersion: 3
  1725. time: 2.0833333
  1726. value: 1
  1727. inSlope: 0
  1728. outSlope: 0
  1729. tangentMode: 136
  1730. weightedMode: 0
  1731. inWeight: 0.33333334
  1732. outWeight: 0.33333334
  1733. m_PreInfinity: 2
  1734. m_PostInfinity: 2
  1735. m_RotationOrder: 4
  1736. attribute: material._Color.r
  1737. path: GameObject/lanqiu_fushitietu/Anim_003/defense:WBP
  1738. classID: 137
  1739. script: {fileID: 0}
  1740. - curve:
  1741. serializedVersion: 2
  1742. m_Curve:
  1743. - serializedVersion: 3
  1744. time: 1
  1745. value: 0
  1746. inSlope: 0
  1747. outSlope: 0
  1748. tangentMode: 136
  1749. weightedMode: 0
  1750. inWeight: 0.33333334
  1751. outWeight: 0.33333334
  1752. - serializedVersion: 3
  1753. time: 2.0833333
  1754. value: 1
  1755. inSlope: 0
  1756. outSlope: 0
  1757. tangentMode: 136
  1758. weightedMode: 0
  1759. inWeight: 0.33333334
  1760. outWeight: 0.33333334
  1761. m_PreInfinity: 2
  1762. m_PostInfinity: 2
  1763. m_RotationOrder: 4
  1764. attribute: material._Color.g
  1765. path: GameObject/lanqiu_fushitietu/Anim_003/defense:WBP
  1766. classID: 137
  1767. script: {fileID: 0}
  1768. - curve:
  1769. serializedVersion: 2
  1770. m_Curve:
  1771. - serializedVersion: 3
  1772. time: 1
  1773. value: 0
  1774. inSlope: 0
  1775. outSlope: 0
  1776. tangentMode: 136
  1777. weightedMode: 0
  1778. inWeight: 0.33333334
  1779. outWeight: 0.33333334
  1780. - serializedVersion: 3
  1781. time: 2.0833333
  1782. value: 1
  1783. inSlope: 0
  1784. outSlope: 0
  1785. tangentMode: 136
  1786. weightedMode: 0
  1787. inWeight: 0.33333334
  1788. outWeight: 0.33333334
  1789. m_PreInfinity: 2
  1790. m_PostInfinity: 2
  1791. m_RotationOrder: 4
  1792. attribute: material._Color.b
  1793. path: GameObject/lanqiu_fushitietu/Anim_003/defense:WBP
  1794. classID: 137
  1795. script: {fileID: 0}
  1796. - curve:
  1797. serializedVersion: 2
  1798. m_Curve:
  1799. - serializedVersion: 3
  1800. time: 1
  1801. value: 1
  1802. inSlope: 0
  1803. outSlope: 0
  1804. tangentMode: 136
  1805. weightedMode: 0
  1806. inWeight: 0.33333334
  1807. outWeight: 0.33333334
  1808. - serializedVersion: 3
  1809. time: 2.0833333
  1810. value: 1
  1811. inSlope: 0
  1812. outSlope: 0
  1813. tangentMode: 136
  1814. weightedMode: 0
  1815. inWeight: 0.33333334
  1816. outWeight: 0.33333334
  1817. m_PreInfinity: 2
  1818. m_PostInfinity: 2
  1819. m_RotationOrder: 4
  1820. attribute: material._Color.a
  1821. path: GameObject/lanqiu_fushitietu/Anim_003/defense:WBP
  1822. classID: 137
  1823. script: {fileID: 0}
  1824. - curve:
  1825. serializedVersion: 2
  1826. m_Curve:
  1827. - serializedVersion: 3
  1828. time: 0.96666664
  1829. value: 0
  1830. inSlope: 0
  1831. outSlope: 0
  1832. tangentMode: 136
  1833. weightedMode: 0
  1834. inWeight: 0.33333334
  1835. outWeight: 0.33333334
  1836. - serializedVersion: 3
  1837. time: 2.1166666
  1838. value: 1
  1839. inSlope: 0
  1840. outSlope: 0
  1841. tangentMode: 136
  1842. weightedMode: 0
  1843. inWeight: 0.33333334
  1844. outWeight: 0.33333334
  1845. m_PreInfinity: 2
  1846. m_PostInfinity: 2
  1847. m_RotationOrder: 4
  1848. attribute: material._Color.r
  1849. path: GameObject/lanqiu_fushitietu/Anim_003s/WBP
  1850. classID: 137
  1851. script: {fileID: 0}
  1852. - curve:
  1853. serializedVersion: 2
  1854. m_Curve:
  1855. - serializedVersion: 3
  1856. time: 0.96666664
  1857. value: 0
  1858. inSlope: 0
  1859. outSlope: 0
  1860. tangentMode: 136
  1861. weightedMode: 0
  1862. inWeight: 0.33333334
  1863. outWeight: 0.33333334
  1864. - serializedVersion: 3
  1865. time: 2.1166666
  1866. value: 1
  1867. inSlope: 0
  1868. outSlope: 0
  1869. tangentMode: 136
  1870. weightedMode: 0
  1871. inWeight: 0.33333334
  1872. outWeight: 0.33333334
  1873. m_PreInfinity: 2
  1874. m_PostInfinity: 2
  1875. m_RotationOrder: 4
  1876. attribute: material._Color.g
  1877. path: GameObject/lanqiu_fushitietu/Anim_003s/WBP
  1878. classID: 137
  1879. script: {fileID: 0}
  1880. - curve:
  1881. serializedVersion: 2
  1882. m_Curve:
  1883. - serializedVersion: 3
  1884. time: 0.96666664
  1885. value: 0
  1886. inSlope: 0
  1887. outSlope: 0
  1888. tangentMode: 136
  1889. weightedMode: 0
  1890. inWeight: 0.33333334
  1891. outWeight: 0.33333334
  1892. - serializedVersion: 3
  1893. time: 2.1166666
  1894. value: 1
  1895. inSlope: 0
  1896. outSlope: 0
  1897. tangentMode: 136
  1898. weightedMode: 0
  1899. inWeight: 0.33333334
  1900. outWeight: 0.33333334
  1901. m_PreInfinity: 2
  1902. m_PostInfinity: 2
  1903. m_RotationOrder: 4
  1904. attribute: material._Color.b
  1905. path: GameObject/lanqiu_fushitietu/Anim_003s/WBP
  1906. classID: 137
  1907. script: {fileID: 0}
  1908. - curve:
  1909. serializedVersion: 2
  1910. m_Curve:
  1911. - serializedVersion: 3
  1912. time: 0.96666664
  1913. value: 1
  1914. inSlope: 0
  1915. outSlope: 0
  1916. tangentMode: 136
  1917. weightedMode: 0
  1918. inWeight: 0.33333334
  1919. outWeight: 0.33333334
  1920. - serializedVersion: 3
  1921. time: 2.1166666
  1922. value: 1
  1923. inSlope: 0
  1924. outSlope: 0
  1925. tangentMode: 136
  1926. weightedMode: 0
  1927. inWeight: 0.33333334
  1928. outWeight: 0.33333334
  1929. m_PreInfinity: 2
  1930. m_PostInfinity: 2
  1931. m_RotationOrder: 4
  1932. attribute: material._Color.a
  1933. path: GameObject/lanqiu_fushitietu/Anim_003s/WBP
  1934. classID: 137
  1935. script: {fileID: 0}
  1936. - curve:
  1937. serializedVersion: 2
  1938. m_Curve:
  1939. - serializedVersion: 3
  1940. time: 0.96666664
  1941. value: 0
  1942. inSlope: 0
  1943. outSlope: 0
  1944. tangentMode: 136
  1945. weightedMode: 0
  1946. inWeight: 0.33333334
  1947. outWeight: 0.33333334
  1948. - serializedVersion: 3
  1949. time: 2.35
  1950. value: 0.9632353
  1951. inSlope: 0
  1952. outSlope: 0
  1953. tangentMode: 136
  1954. weightedMode: 0
  1955. inWeight: 0.33333334
  1956. outWeight: 0.33333334
  1957. m_PreInfinity: 2
  1958. m_PostInfinity: 2
  1959. m_RotationOrder: 4
  1960. attribute: material._Color.r
  1961. path: GameObject/man-basketball-player1/Geometry/man-basketball-player
  1962. classID: 137
  1963. script: {fileID: 0}
  1964. - curve:
  1965. serializedVersion: 2
  1966. m_Curve:
  1967. - serializedVersion: 3
  1968. time: 0.96666664
  1969. value: 0
  1970. inSlope: 0
  1971. outSlope: 0
  1972. tangentMode: 136
  1973. weightedMode: 0
  1974. inWeight: 0.33333334
  1975. outWeight: 0.33333334
  1976. - serializedVersion: 3
  1977. time: 2.35
  1978. value: 0.9632353
  1979. inSlope: 0
  1980. outSlope: 0
  1981. tangentMode: 136
  1982. weightedMode: 0
  1983. inWeight: 0.33333334
  1984. outWeight: 0.33333334
  1985. m_PreInfinity: 2
  1986. m_PostInfinity: 2
  1987. m_RotationOrder: 4
  1988. attribute: material._Color.g
  1989. path: GameObject/man-basketball-player1/Geometry/man-basketball-player
  1990. classID: 137
  1991. script: {fileID: 0}
  1992. - curve:
  1993. serializedVersion: 2
  1994. m_Curve:
  1995. - serializedVersion: 3
  1996. time: 0.96666664
  1997. value: 0
  1998. inSlope: 0
  1999. outSlope: 0
  2000. tangentMode: 136
  2001. weightedMode: 0
  2002. inWeight: 0.33333334
  2003. outWeight: 0.33333334
  2004. - serializedVersion: 3
  2005. time: 2.35
  2006. value: 0.9632353
  2007. inSlope: 0
  2008. outSlope: 0
  2009. tangentMode: 136
  2010. weightedMode: 0
  2011. inWeight: 0.33333334
  2012. outWeight: 0.33333334
  2013. m_PreInfinity: 2
  2014. m_PostInfinity: 2
  2015. m_RotationOrder: 4
  2016. attribute: material._Color.b
  2017. path: GameObject/man-basketball-player1/Geometry/man-basketball-player
  2018. classID: 137
  2019. script: {fileID: 0}
  2020. - curve:
  2021. serializedVersion: 2
  2022. m_Curve:
  2023. - serializedVersion: 3
  2024. time: 0.96666664
  2025. value: 1
  2026. inSlope: 0
  2027. outSlope: 0
  2028. tangentMode: 136
  2029. weightedMode: 0
  2030. inWeight: 0.33333334
  2031. outWeight: 0.33333334
  2032. - serializedVersion: 3
  2033. time: 2.35
  2034. value: 1
  2035. inSlope: 0
  2036. outSlope: 0
  2037. tangentMode: 136
  2038. weightedMode: 0
  2039. inWeight: 0.33333334
  2040. outWeight: 0.33333334
  2041. m_PreInfinity: 2
  2042. m_PostInfinity: 2
  2043. m_RotationOrder: 4
  2044. attribute: material._Color.a
  2045. path: GameObject/man-basketball-player1/Geometry/man-basketball-player
  2046. classID: 137
  2047. script: {fileID: 0}
  2048. - curve:
  2049. serializedVersion: 2
  2050. m_Curve:
  2051. - serializedVersion: 3
  2052. time: 0.96666664
  2053. value: 0
  2054. inSlope: 0
  2055. outSlope: 0
  2056. tangentMode: 136
  2057. weightedMode: 0
  2058. inWeight: 0.33333334
  2059. outWeight: 0.33333334
  2060. - serializedVersion: 3
  2061. time: 2.35
  2062. value: 0.5215687
  2063. inSlope: 0
  2064. outSlope: 0
  2065. tangentMode: 136
  2066. weightedMode: 0
  2067. inWeight: 0.33333334
  2068. outWeight: 0.33333334
  2069. m_PreInfinity: 2
  2070. m_PostInfinity: 2
  2071. m_RotationOrder: 4
  2072. attribute: material._Color.r
  2073. path: GameObject/man-basketball-player1/Sphere/1223
  2074. classID: 23
  2075. script: {fileID: 0}
  2076. - curve:
  2077. serializedVersion: 2
  2078. m_Curve:
  2079. - serializedVersion: 3
  2080. time: 0.96666664
  2081. value: 0
  2082. inSlope: 0
  2083. outSlope: 0
  2084. tangentMode: 136
  2085. weightedMode: 0
  2086. inWeight: 0.33333334
  2087. outWeight: 0.33333334
  2088. - serializedVersion: 3
  2089. time: 2.35
  2090. value: 0.172549
  2091. inSlope: 0
  2092. outSlope: 0
  2093. tangentMode: 136
  2094. weightedMode: 0
  2095. inWeight: 0.33333334
  2096. outWeight: 0.33333334
  2097. m_PreInfinity: 2
  2098. m_PostInfinity: 2
  2099. m_RotationOrder: 4
  2100. attribute: material._Color.g
  2101. path: GameObject/man-basketball-player1/Sphere/1223
  2102. classID: 23
  2103. script: {fileID: 0}
  2104. - curve:
  2105. serializedVersion: 2
  2106. m_Curve:
  2107. - serializedVersion: 3
  2108. time: 0.96666664
  2109. value: 0
  2110. inSlope: 0
  2111. outSlope: 0
  2112. tangentMode: 136
  2113. weightedMode: 0
  2114. inWeight: 0.33333334
  2115. outWeight: 0.33333334
  2116. - serializedVersion: 3
  2117. time: 2.35
  2118. value: 0
  2119. inSlope: 0
  2120. outSlope: 0
  2121. tangentMode: 136
  2122. weightedMode: 0
  2123. inWeight: 0.33333334
  2124. outWeight: 0.33333334
  2125. m_PreInfinity: 2
  2126. m_PostInfinity: 2
  2127. m_RotationOrder: 4
  2128. attribute: material._Color.b
  2129. path: GameObject/man-basketball-player1/Sphere/1223
  2130. classID: 23
  2131. script: {fileID: 0}
  2132. - curve:
  2133. serializedVersion: 2
  2134. m_Curve:
  2135. - serializedVersion: 3
  2136. time: 0.96666664
  2137. value: 1
  2138. inSlope: 0
  2139. outSlope: 0
  2140. tangentMode: 136
  2141. weightedMode: 0
  2142. inWeight: 0.33333334
  2143. outWeight: 0.33333334
  2144. - serializedVersion: 3
  2145. time: 2.35
  2146. value: 1
  2147. inSlope: 0
  2148. outSlope: 0
  2149. tangentMode: 136
  2150. weightedMode: 0
  2151. inWeight: 0.33333334
  2152. outWeight: 0.33333334
  2153. m_PreInfinity: 2
  2154. m_PostInfinity: 2
  2155. m_RotationOrder: 4
  2156. attribute: material._Color.a
  2157. path: GameObject/man-basketball-player1/Sphere/1223
  2158. classID: 23
  2159. script: {fileID: 0}
  2160. - curve:
  2161. serializedVersion: 2
  2162. m_Curve:
  2163. - serializedVersion: 3
  2164. time: 0.96666664
  2165. value: 0
  2166. inSlope: 0
  2167. outSlope: 0
  2168. tangentMode: 136
  2169. weightedMode: 0
  2170. inWeight: 0.33333334
  2171. outWeight: 0.33333334
  2172. - serializedVersion: 3
  2173. time: 2.35
  2174. value: 0.1603774
  2175. inSlope: 0
  2176. outSlope: 0
  2177. tangentMode: 136
  2178. weightedMode: 0
  2179. inWeight: 0.33333334
  2180. outWeight: 0.33333334
  2181. m_PreInfinity: 2
  2182. m_PostInfinity: 2
  2183. m_RotationOrder: 4
  2184. attribute: material._EmissionColor.r
  2185. path: GameObject/man-basketball-player1/Sphere/1223
  2186. classID: 23
  2187. script: {fileID: 0}
  2188. - curve:
  2189. serializedVersion: 2
  2190. m_Curve:
  2191. - serializedVersion: 3
  2192. time: 0.96666664
  2193. value: 0
  2194. inSlope: 0
  2195. outSlope: 0
  2196. tangentMode: 136
  2197. weightedMode: 0
  2198. inWeight: 0.33333334
  2199. outWeight: 0.33333334
  2200. - serializedVersion: 3
  2201. time: 2.35
  2202. value: 0.05854964
  2203. inSlope: 0
  2204. outSlope: 0
  2205. tangentMode: 136
  2206. weightedMode: 0
  2207. inWeight: 0.33333334
  2208. outWeight: 0.33333334
  2209. m_PreInfinity: 2
  2210. m_PostInfinity: 2
  2211. m_RotationOrder: 4
  2212. attribute: material._EmissionColor.g
  2213. path: GameObject/man-basketball-player1/Sphere/1223
  2214. classID: 23
  2215. script: {fileID: 0}
  2216. - curve:
  2217. serializedVersion: 2
  2218. m_Curve:
  2219. - serializedVersion: 3
  2220. time: 0.96666664
  2221. value: 0
  2222. inSlope: 0
  2223. outSlope: 0
  2224. tangentMode: 136
  2225. weightedMode: 0
  2226. inWeight: 0.33333334
  2227. outWeight: 0.33333334
  2228. - serializedVersion: 3
  2229. time: 2.35
  2230. value: 0.04765932
  2231. inSlope: 0
  2232. outSlope: 0
  2233. tangentMode: 136
  2234. weightedMode: 0
  2235. inWeight: 0.33333334
  2236. outWeight: 0.33333334
  2237. m_PreInfinity: 2
  2238. m_PostInfinity: 2
  2239. m_RotationOrder: 4
  2240. attribute: material._EmissionColor.b
  2241. path: GameObject/man-basketball-player1/Sphere/1223
  2242. classID: 23
  2243. script: {fileID: 0}
  2244. - curve:
  2245. serializedVersion: 2
  2246. m_Curve:
  2247. - serializedVersion: 3
  2248. time: 0.96666664
  2249. value: 0
  2250. inSlope: 0
  2251. outSlope: 0
  2252. tangentMode: 136
  2253. weightedMode: 0
  2254. inWeight: 0.33333334
  2255. outWeight: 0.33333334
  2256. - serializedVersion: 3
  2257. time: 2.35
  2258. value: 0
  2259. inSlope: 0
  2260. outSlope: 0
  2261. tangentMode: 136
  2262. weightedMode: 0
  2263. inWeight: 0.33333334
  2264. outWeight: 0.33333334
  2265. m_PreInfinity: 2
  2266. m_PostInfinity: 2
  2267. m_RotationOrder: 4
  2268. attribute: material._EmissionColor.a
  2269. path: GameObject/man-basketball-player1/Sphere/1223
  2270. classID: 23
  2271. script: {fileID: 0}
  2272. - curve:
  2273. serializedVersion: 2
  2274. m_Curve:
  2275. - serializedVersion: 3
  2276. time: 0
  2277. value: -0.06
  2278. inSlope: 0
  2279. outSlope: 0
  2280. tangentMode: 136
  2281. weightedMode: 0
  2282. inWeight: 0.33333334
  2283. outWeight: 0.33333334
  2284. - serializedVersion: 3
  2285. time: 0.5833333
  2286. value: 1
  2287. inSlope: 0
  2288. outSlope: 0
  2289. tangentMode: 136
  2290. weightedMode: 0
  2291. inWeight: 0.33333334
  2292. outWeight: 0.33333334
  2293. m_PreInfinity: 2
  2294. m_PostInfinity: 2
  2295. m_RotationOrder: 4
  2296. attribute: material._Float1
  2297. path: lanqiukang
  2298. classID: 23
  2299. script: {fileID: 0}
  2300. - curve:
  2301. serializedVersion: 2
  2302. m_Curve:
  2303. - serializedVersion: 3
  2304. time: 0
  2305. value: 0.85
  2306. inSlope: 0
  2307. outSlope: 0
  2308. tangentMode: 136
  2309. weightedMode: 0
  2310. inWeight: 0.33333334
  2311. outWeight: 0.33333334
  2312. - serializedVersion: 3
  2313. time: 0.21666667
  2314. value: 0.85
  2315. inSlope: 0
  2316. outSlope: 0
  2317. tangentMode: 136
  2318. weightedMode: 0
  2319. inWeight: 0.33333334
  2320. outWeight: 0.33333334
  2321. - serializedVersion: 3
  2322. time: 0.8
  2323. value: 0.01
  2324. inSlope: 0
  2325. outSlope: 0
  2326. tangentMode: 136
  2327. weightedMode: 0
  2328. inWeight: 0.33333334
  2329. outWeight: 0.33333334
  2330. m_PreInfinity: 2
  2331. m_PostInfinity: 2
  2332. m_RotationOrder: 4
  2333. attribute: material._Tex
  2334. path: lanqiukang
  2335. classID: 23
  2336. script: {fileID: 0}
  2337. - curve:
  2338. serializedVersion: 2
  2339. m_Curve:
  2340. - serializedVersion: 3
  2341. time: 0
  2342. value: 1
  2343. inSlope: Infinity
  2344. outSlope: Infinity
  2345. tangentMode: 103
  2346. weightedMode: 0
  2347. inWeight: 0
  2348. outWeight: 0
  2349. m_PreInfinity: 2
  2350. m_PostInfinity: 2
  2351. m_RotationOrder: 4
  2352. attribute: m_IsActive
  2353. path: qanqiuchang
  2354. classID: 1
  2355. script: {fileID: 0}
  2356. - curve:
  2357. serializedVersion: 2
  2358. m_Curve:
  2359. - serializedVersion: 3
  2360. time: 1.6166667
  2361. value: 0
  2362. inSlope: 0
  2363. outSlope: 0
  2364. tangentMode: 136
  2365. weightedMode: 0
  2366. inWeight: 0.33333334
  2367. outWeight: 0.33333334
  2368. - serializedVersion: 3
  2369. time: 2.1833334
  2370. value: 1
  2371. inSlope: 0
  2372. outSlope: 0
  2373. tangentMode: 136
  2374. weightedMode: 0
  2375. inWeight: 0.33333334
  2376. outWeight: 0.33333334
  2377. - serializedVersion: 3
  2378. time: 3.95
  2379. value: 1
  2380. inSlope: 0
  2381. outSlope: 0
  2382. tangentMode: 136
  2383. weightedMode: 0
  2384. inWeight: 0.33333334
  2385. outWeight: 0.33333334
  2386. m_PreInfinity: 2
  2387. m_PostInfinity: 2
  2388. m_RotationOrder: 4
  2389. attribute: material._Color.r
  2390. path: qanqiuchang/Basketball (1)
  2391. classID: 23
  2392. script: {fileID: 0}
  2393. - curve:
  2394. serializedVersion: 2
  2395. m_Curve:
  2396. - serializedVersion: 3
  2397. time: 1.6166667
  2398. value: 0
  2399. inSlope: 0
  2400. outSlope: 0
  2401. tangentMode: 136
  2402. weightedMode: 0
  2403. inWeight: 0.33333334
  2404. outWeight: 0.33333334
  2405. - serializedVersion: 3
  2406. time: 2.1833334
  2407. value: 1
  2408. inSlope: 0
  2409. outSlope: 0
  2410. tangentMode: 136
  2411. weightedMode: 0
  2412. inWeight: 0.33333334
  2413. outWeight: 0.33333334
  2414. - serializedVersion: 3
  2415. time: 3.95
  2416. value: 1
  2417. inSlope: 0
  2418. outSlope: 0
  2419. tangentMode: 136
  2420. weightedMode: 0
  2421. inWeight: 0.33333334
  2422. outWeight: 0.33333334
  2423. m_PreInfinity: 2
  2424. m_PostInfinity: 2
  2425. m_RotationOrder: 4
  2426. attribute: material._Color.g
  2427. path: qanqiuchang/Basketball (1)
  2428. classID: 23
  2429. script: {fileID: 0}
  2430. - curve:
  2431. serializedVersion: 2
  2432. m_Curve:
  2433. - serializedVersion: 3
  2434. time: 1.6166667
  2435. value: 0
  2436. inSlope: 0
  2437. outSlope: 0
  2438. tangentMode: 136
  2439. weightedMode: 0
  2440. inWeight: 0.33333334
  2441. outWeight: 0.33333334
  2442. - serializedVersion: 3
  2443. time: 2.1833334
  2444. value: 1
  2445. inSlope: 0
  2446. outSlope: 0
  2447. tangentMode: 136
  2448. weightedMode: 0
  2449. inWeight: 0.33333334
  2450. outWeight: 0.33333334
  2451. - serializedVersion: 3
  2452. time: 3.95
  2453. value: 1
  2454. inSlope: 0
  2455. outSlope: 0
  2456. tangentMode: 136
  2457. weightedMode: 0
  2458. inWeight: 0.33333334
  2459. outWeight: 0.33333334
  2460. m_PreInfinity: 2
  2461. m_PostInfinity: 2
  2462. m_RotationOrder: 4
  2463. attribute: material._Color.b
  2464. path: qanqiuchang/Basketball (1)
  2465. classID: 23
  2466. script: {fileID: 0}
  2467. - curve:
  2468. serializedVersion: 2
  2469. m_Curve:
  2470. - serializedVersion: 3
  2471. time: 1.6166667
  2472. value: 1
  2473. inSlope: 0
  2474. outSlope: 0
  2475. tangentMode: 136
  2476. weightedMode: 0
  2477. inWeight: 0.33333334
  2478. outWeight: 0.33333334
  2479. - serializedVersion: 3
  2480. time: 2.1833334
  2481. value: 1
  2482. inSlope: 0
  2483. outSlope: 0
  2484. tangentMode: 136
  2485. weightedMode: 0
  2486. inWeight: 0.33333334
  2487. outWeight: 0.33333334
  2488. - serializedVersion: 3
  2489. time: 3.95
  2490. value: 1
  2491. inSlope: 0
  2492. outSlope: 0
  2493. tangentMode: 136
  2494. weightedMode: 0
  2495. inWeight: 0.33333334
  2496. outWeight: 0.33333334
  2497. m_PreInfinity: 2
  2498. m_PostInfinity: 2
  2499. m_RotationOrder: 4
  2500. attribute: material._Color.a
  2501. path: qanqiuchang/Basketball (1)
  2502. classID: 23
  2503. script: {fileID: 0}
  2504. - curve:
  2505. serializedVersion: 2
  2506. m_Curve:
  2507. - serializedVersion: 3
  2508. time: 1.6166667
  2509. value: 0
  2510. inSlope: 0
  2511. outSlope: 0
  2512. tangentMode: 136
  2513. weightedMode: 0
  2514. inWeight: 0.33333334
  2515. outWeight: 0.33333334
  2516. - serializedVersion: 3
  2517. time: 2.1833334
  2518. value: 0.9622642
  2519. inSlope: 0
  2520. outSlope: 0
  2521. tangentMode: 136
  2522. weightedMode: 0
  2523. inWeight: 0.33333334
  2524. outWeight: 0.33333334
  2525. - serializedVersion: 3
  2526. time: 3.95
  2527. value: 0.9622642
  2528. inSlope: 0
  2529. outSlope: 0
  2530. tangentMode: 136
  2531. weightedMode: 0
  2532. inWeight: 0.33333334
  2533. outWeight: 0.33333334
  2534. m_PreInfinity: 2
  2535. m_PostInfinity: 2
  2536. m_RotationOrder: 4
  2537. attribute: material._EmissionColor.r
  2538. path: qanqiuchang/Basketball (1)
  2539. classID: 23
  2540. script: {fileID: 0}
  2541. - curve:
  2542. serializedVersion: 2
  2543. m_Curve:
  2544. - serializedVersion: 3
  2545. time: 1.6166667
  2546. value: 0
  2547. inSlope: 0
  2548. outSlope: 0
  2549. tangentMode: 136
  2550. weightedMode: 0
  2551. inWeight: 0.33333334
  2552. outWeight: 0.33333334
  2553. - serializedVersion: 3
  2554. time: 2.1833334
  2555. value: 0.9622642
  2556. inSlope: 0
  2557. outSlope: 0
  2558. tangentMode: 136
  2559. weightedMode: 0
  2560. inWeight: 0.33333334
  2561. outWeight: 0.33333334
  2562. - serializedVersion: 3
  2563. time: 3.95
  2564. value: 0.9622642
  2565. inSlope: 0
  2566. outSlope: 0
  2567. tangentMode: 136
  2568. weightedMode: 0
  2569. inWeight: 0.33333334
  2570. outWeight: 0.33333334
  2571. m_PreInfinity: 2
  2572. m_PostInfinity: 2
  2573. m_RotationOrder: 4
  2574. attribute: material._EmissionColor.g
  2575. path: qanqiuchang/Basketball (1)
  2576. classID: 23
  2577. script: {fileID: 0}
  2578. - curve:
  2579. serializedVersion: 2
  2580. m_Curve:
  2581. - serializedVersion: 3
  2582. time: 1.6166667
  2583. value: 0
  2584. inSlope: 0
  2585. outSlope: 0
  2586. tangentMode: 136
  2587. weightedMode: 0
  2588. inWeight: 0.33333334
  2589. outWeight: 0.33333334
  2590. - serializedVersion: 3
  2591. time: 2.1833334
  2592. value: 0.9622642
  2593. inSlope: 0
  2594. outSlope: 0
  2595. tangentMode: 136
  2596. weightedMode: 0
  2597. inWeight: 0.33333334
  2598. outWeight: 0.33333334
  2599. - serializedVersion: 3
  2600. time: 3.95
  2601. value: 0.9622642
  2602. inSlope: 0
  2603. outSlope: 0
  2604. tangentMode: 136
  2605. weightedMode: 0
  2606. inWeight: 0.33333334
  2607. outWeight: 0.33333334
  2608. m_PreInfinity: 2
  2609. m_PostInfinity: 2
  2610. m_RotationOrder: 4
  2611. attribute: material._EmissionColor.b
  2612. path: qanqiuchang/Basketball (1)
  2613. classID: 23
  2614. script: {fileID: 0}
  2615. - curve:
  2616. serializedVersion: 2
  2617. m_Curve:
  2618. - serializedVersion: 3
  2619. time: 1.6166667
  2620. value: 1
  2621. inSlope: 0
  2622. outSlope: 0
  2623. tangentMode: 136
  2624. weightedMode: 0
  2625. inWeight: 0.33333334
  2626. outWeight: 0.33333334
  2627. - serializedVersion: 3
  2628. time: 2.1833334
  2629. value: 1
  2630. inSlope: 0
  2631. outSlope: 0
  2632. tangentMode: 136
  2633. weightedMode: 0
  2634. inWeight: 0.33333334
  2635. outWeight: 0.33333334
  2636. - serializedVersion: 3
  2637. time: 3.95
  2638. value: 1
  2639. inSlope: 0
  2640. outSlope: 0
  2641. tangentMode: 136
  2642. weightedMode: 0
  2643. inWeight: 0.33333334
  2644. outWeight: 0.33333334
  2645. m_PreInfinity: 2
  2646. m_PostInfinity: 2
  2647. m_RotationOrder: 4
  2648. attribute: material._EmissionColor.a
  2649. path: qanqiuchang/Basketball (1)
  2650. classID: 23
  2651. script: {fileID: 0}
  2652. - curve:
  2653. serializedVersion: 2
  2654. m_Curve:
  2655. - serializedVersion: 3
  2656. time: 1.6166667
  2657. value: 0
  2658. inSlope: 0
  2659. outSlope: 0
  2660. tangentMode: 136
  2661. weightedMode: 0
  2662. inWeight: 0.33333334
  2663. outWeight: 0.33333334
  2664. - serializedVersion: 3
  2665. time: 2.1833334
  2666. value: 1
  2667. inSlope: 0
  2668. outSlope: 0
  2669. tangentMode: 136
  2670. weightedMode: 0
  2671. inWeight: 0.33333334
  2672. outWeight: 0.33333334
  2673. - serializedVersion: 3
  2674. time: 3.95
  2675. value: 1
  2676. inSlope: 0
  2677. outSlope: 0
  2678. tangentMode: 136
  2679. weightedMode: 0
  2680. inWeight: 0.33333334
  2681. outWeight: 0.33333334
  2682. m_PreInfinity: 2
  2683. m_PostInfinity: 2
  2684. m_RotationOrder: 4
  2685. attribute: material._Color.r
  2686. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  2687. classID: 137
  2688. script: {fileID: 0}
  2689. - curve:
  2690. serializedVersion: 2
  2691. m_Curve:
  2692. - serializedVersion: 3
  2693. time: 1.6166667
  2694. value: 0
  2695. inSlope: 0
  2696. outSlope: 0
  2697. tangentMode: 136
  2698. weightedMode: 0
  2699. inWeight: 0.33333334
  2700. outWeight: 0.33333334
  2701. - serializedVersion: 3
  2702. time: 2.1833334
  2703. value: 1
  2704. inSlope: 0
  2705. outSlope: 0
  2706. tangentMode: 136
  2707. weightedMode: 0
  2708. inWeight: 0.33333334
  2709. outWeight: 0.33333334
  2710. - serializedVersion: 3
  2711. time: 3.95
  2712. value: 1
  2713. inSlope: 0
  2714. outSlope: 0
  2715. tangentMode: 136
  2716. weightedMode: 0
  2717. inWeight: 0.33333334
  2718. outWeight: 0.33333334
  2719. m_PreInfinity: 2
  2720. m_PostInfinity: 2
  2721. m_RotationOrder: 4
  2722. attribute: material._Color.g
  2723. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  2724. classID: 137
  2725. script: {fileID: 0}
  2726. - curve:
  2727. serializedVersion: 2
  2728. m_Curve:
  2729. - serializedVersion: 3
  2730. time: 1.6166667
  2731. value: 0
  2732. inSlope: 0
  2733. outSlope: 0
  2734. tangentMode: 136
  2735. weightedMode: 0
  2736. inWeight: 0.33333334
  2737. outWeight: 0.33333334
  2738. - serializedVersion: 3
  2739. time: 2.1833334
  2740. value: 1
  2741. inSlope: 0
  2742. outSlope: 0
  2743. tangentMode: 136
  2744. weightedMode: 0
  2745. inWeight: 0.33333334
  2746. outWeight: 0.33333334
  2747. - serializedVersion: 3
  2748. time: 3.95
  2749. value: 1
  2750. inSlope: 0
  2751. outSlope: 0
  2752. tangentMode: 136
  2753. weightedMode: 0
  2754. inWeight: 0.33333334
  2755. outWeight: 0.33333334
  2756. m_PreInfinity: 2
  2757. m_PostInfinity: 2
  2758. m_RotationOrder: 4
  2759. attribute: material._Color.b
  2760. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  2761. classID: 137
  2762. script: {fileID: 0}
  2763. - curve:
  2764. serializedVersion: 2
  2765. m_Curve:
  2766. - serializedVersion: 3
  2767. time: 1.6166667
  2768. value: 1
  2769. inSlope: 0
  2770. outSlope: 0
  2771. tangentMode: 136
  2772. weightedMode: 0
  2773. inWeight: 0.33333334
  2774. outWeight: 0.33333334
  2775. - serializedVersion: 3
  2776. time: 2.1833334
  2777. value: 1
  2778. inSlope: 0
  2779. outSlope: 0
  2780. tangentMode: 136
  2781. weightedMode: 0
  2782. inWeight: 0.33333334
  2783. outWeight: 0.33333334
  2784. - serializedVersion: 3
  2785. time: 3.95
  2786. value: 1
  2787. inSlope: 0
  2788. outSlope: 0
  2789. tangentMode: 136
  2790. weightedMode: 0
  2791. inWeight: 0.33333334
  2792. outWeight: 0.33333334
  2793. m_PreInfinity: 2
  2794. m_PostInfinity: 2
  2795. m_RotationOrder: 4
  2796. attribute: material._Color.a
  2797. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  2798. classID: 137
  2799. script: {fileID: 0}
  2800. - curve:
  2801. serializedVersion: 2
  2802. m_Curve:
  2803. - serializedVersion: 3
  2804. time: 1.6166667
  2805. value: 0
  2806. inSlope: 0
  2807. outSlope: 0
  2808. tangentMode: 136
  2809. weightedMode: 0
  2810. inWeight: 0.33333334
  2811. outWeight: 0.33333334
  2812. - serializedVersion: 3
  2813. time: 2.1833334
  2814. value: 0.2924528
  2815. inSlope: 0
  2816. outSlope: 0
  2817. tangentMode: 136
  2818. weightedMode: 0
  2819. inWeight: 0.33333334
  2820. outWeight: 0.33333334
  2821. - serializedVersion: 3
  2822. time: 3.95
  2823. value: 0.2924528
  2824. inSlope: 0
  2825. outSlope: 0
  2826. tangentMode: 136
  2827. weightedMode: 0
  2828. inWeight: 0.33333334
  2829. outWeight: 0.33333334
  2830. m_PreInfinity: 2
  2831. m_PostInfinity: 2
  2832. m_RotationOrder: 4
  2833. attribute: material._EmissionColor.r
  2834. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  2835. classID: 137
  2836. script: {fileID: 0}
  2837. - curve:
  2838. serializedVersion: 2
  2839. m_Curve:
  2840. - serializedVersion: 3
  2841. time: 1.6166667
  2842. value: 0
  2843. inSlope: 0
  2844. outSlope: 0
  2845. tangentMode: 136
  2846. weightedMode: 0
  2847. inWeight: 0.33333334
  2848. outWeight: 0.33333334
  2849. - serializedVersion: 3
  2850. time: 2.1833334
  2851. value: 0.2924528
  2852. inSlope: 0
  2853. outSlope: 0
  2854. tangentMode: 136
  2855. weightedMode: 0
  2856. inWeight: 0.33333334
  2857. outWeight: 0.33333334
  2858. - serializedVersion: 3
  2859. time: 3.95
  2860. value: 0.2924528
  2861. inSlope: 0
  2862. outSlope: 0
  2863. tangentMode: 136
  2864. weightedMode: 0
  2865. inWeight: 0.33333334
  2866. outWeight: 0.33333334
  2867. m_PreInfinity: 2
  2868. m_PostInfinity: 2
  2869. m_RotationOrder: 4
  2870. attribute: material._EmissionColor.g
  2871. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  2872. classID: 137
  2873. script: {fileID: 0}
  2874. - curve:
  2875. serializedVersion: 2
  2876. m_Curve:
  2877. - serializedVersion: 3
  2878. time: 1.6166667
  2879. value: 0
  2880. inSlope: 0
  2881. outSlope: 0
  2882. tangentMode: 136
  2883. weightedMode: 0
  2884. inWeight: 0.33333334
  2885. outWeight: 0.33333334
  2886. - serializedVersion: 3
  2887. time: 2.1833334
  2888. value: 0.2924528
  2889. inSlope: 0
  2890. outSlope: 0
  2891. tangentMode: 136
  2892. weightedMode: 0
  2893. inWeight: 0.33333334
  2894. outWeight: 0.33333334
  2895. - serializedVersion: 3
  2896. time: 3.95
  2897. value: 0.2924528
  2898. inSlope: 0
  2899. outSlope: 0
  2900. tangentMode: 136
  2901. weightedMode: 0
  2902. inWeight: 0.33333334
  2903. outWeight: 0.33333334
  2904. m_PreInfinity: 2
  2905. m_PostInfinity: 2
  2906. m_RotationOrder: 4
  2907. attribute: material._EmissionColor.b
  2908. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  2909. classID: 137
  2910. script: {fileID: 0}
  2911. - curve:
  2912. serializedVersion: 2
  2913. m_Curve:
  2914. - serializedVersion: 3
  2915. time: 1.6166667
  2916. value: 1
  2917. inSlope: 0
  2918. outSlope: 0
  2919. tangentMode: 136
  2920. weightedMode: 0
  2921. inWeight: 0.33333334
  2922. outWeight: 0.33333334
  2923. - serializedVersion: 3
  2924. time: 2.1833334
  2925. value: 1
  2926. inSlope: 0
  2927. outSlope: 0
  2928. tangentMode: 136
  2929. weightedMode: 0
  2930. inWeight: 0.33333334
  2931. outWeight: 0.33333334
  2932. - serializedVersion: 3
  2933. time: 3.95
  2934. value: 1
  2935. inSlope: 0
  2936. outSlope: 0
  2937. tangentMode: 136
  2938. weightedMode: 0
  2939. inWeight: 0.33333334
  2940. outWeight: 0.33333334
  2941. m_PreInfinity: 2
  2942. m_PostInfinity: 2
  2943. m_RotationOrder: 4
  2944. attribute: material._EmissionColor.a
  2945. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  2946. classID: 137
  2947. script: {fileID: 0}
  2948. - curve:
  2949. serializedVersion: 2
  2950. m_Curve:
  2951. - serializedVersion: 3
  2952. time: 2
  2953. value: 0.02
  2954. inSlope: 0
  2955. outSlope: 0
  2956. tangentMode: 136
  2957. weightedMode: 0
  2958. inWeight: 0.33333334
  2959. outWeight: 0.33333334
  2960. - serializedVersion: 3
  2961. time: 2.4333334
  2962. value: 1.28
  2963. inSlope: 0
  2964. outSlope: 0
  2965. tangentMode: 136
  2966. weightedMode: 0
  2967. inWeight: 0.33333334
  2968. outWeight: 0.33333334
  2969. m_PreInfinity: 2
  2970. m_PostInfinity: 2
  2971. m_RotationOrder: 4
  2972. attribute: material._Float1
  2973. path: Quad (2)
  2974. classID: 23
  2975. script: {fileID: 0}
  2976. m_PPtrCurves:
  2977. - curve:
  2978. - time: 0.95
  2979. value: {fileID: 2100000, guid: ed03e77c39549b34fa414d4e5f970ade, type: 2}
  2980. - time: 3.95
  2981. value: {fileID: 2100000, guid: 67ffbb492f3d2384d9b7dc74c81626bb, type: 2}
  2982. attribute: m_Materials.Array.data[0]
  2983. path: BasketballLine01
  2984. classID: 23
  2985. script: {fileID: 0}
  2986. m_SampleRate: 60
  2987. m_WrapMode: 0
  2988. m_Bounds:
  2989. m_Center: {x: 0, y: 0, z: 0}
  2990. m_Extent: {x: 0, y: 0, z: 0}
  2991. m_ClipBindingConstant:
  2992. genericBindings:
  2993. - serializedVersion: 2
  2994. path: 2031204779
  2995. attribute: 2086281974
  2996. script: {fileID: 0}
  2997. typeID: 1
  2998. customType: 0
  2999. isPPtrCurve: 0
  3000. - serializedVersion: 2
  3001. path: 651090403
  3002. attribute: 3305885265
  3003. script: {fileID: 0}
  3004. typeID: 23
  3005. customType: 0
  3006. isPPtrCurve: 0
  3007. - serializedVersion: 2
  3008. path: 2634251547
  3009. attribute: 2086281974
  3010. script: {fileID: 0}
  3011. typeID: 1
  3012. customType: 0
  3013. isPPtrCurve: 0
  3014. - serializedVersion: 2
  3015. path: 2634251547
  3016. attribute: 706477168
  3017. script: {fileID: 0}
  3018. typeID: 23
  3019. customType: 22
  3020. isPPtrCurve: 0
  3021. - serializedVersion: 2
  3022. path: 2634251547
  3023. attribute: 646366601
  3024. script: {fileID: 0}
  3025. typeID: 23
  3026. customType: 22
  3027. isPPtrCurve: 0
  3028. - serializedVersion: 2
  3029. path: 67775649
  3030. attribute: 2086281974
  3031. script: {fileID: 0}
  3032. typeID: 1
  3033. customType: 0
  3034. isPPtrCurve: 0
  3035. - serializedVersion: 2
  3036. path: 67775649
  3037. attribute: 706477168
  3038. script: {fileID: 0}
  3039. typeID: 23
  3040. customType: 22
  3041. isPPtrCurve: 0
  3042. - serializedVersion: 2
  3043. path: 67775649
  3044. attribute: 646366601
  3045. script: {fileID: 0}
  3046. typeID: 23
  3047. customType: 22
  3048. isPPtrCurve: 0
  3049. - serializedVersion: 2
  3050. path: 1930239031
  3051. attribute: 2086281974
  3052. script: {fileID: 0}
  3053. typeID: 1
  3054. customType: 0
  3055. isPPtrCurve: 0
  3056. - serializedVersion: 2
  3057. path: 1930239031
  3058. attribute: 2108656497
  3059. script: {fileID: 0}
  3060. typeID: 23
  3061. customType: 22
  3062. isPPtrCurve: 0
  3063. - serializedVersion: 2
  3064. path: 1930239031
  3065. attribute: 169606256
  3066. script: {fileID: 0}
  3067. typeID: 23
  3068. customType: 22
  3069. isPPtrCurve: 0
  3070. - serializedVersion: 2
  3071. path: 1930239031
  3072. attribute: 109495689
  3073. script: {fileID: 0}
  3074. typeID: 23
  3075. customType: 22
  3076. isPPtrCurve: 0
  3077. - serializedVersion: 2
  3078. path: 2489774086
  3079. attribute: 2086281974
  3080. script: {fileID: 0}
  3081. typeID: 1
  3082. customType: 0
  3083. isPPtrCurve: 0
  3084. - serializedVersion: 2
  3085. path: 2489774086
  3086. attribute: 2151584503
  3087. script: {fileID: 0}
  3088. typeID: 23
  3089. customType: 22
  3090. isPPtrCurve: 0
  3091. - serializedVersion: 2
  3092. path: 1968709139
  3093. attribute: 2086281974
  3094. script: {fileID: 0}
  3095. typeID: 1
  3096. customType: 0
  3097. isPPtrCurve: 0
  3098. - serializedVersion: 2
  3099. path: 1482111001
  3100. attribute: 2086281974
  3101. script: {fileID: 0}
  3102. typeID: 1
  3103. customType: 0
  3104. isPPtrCurve: 0
  3105. - serializedVersion: 2
  3106. path: 1206802440
  3107. attribute: 1303350129
  3108. script: {fileID: 0}
  3109. typeID: 23
  3110. customType: 22
  3111. isPPtrCurve: 0
  3112. - serializedVersion: 2
  3113. path: 1206802440
  3114. attribute: 1571785585
  3115. script: {fileID: 0}
  3116. typeID: 23
  3117. customType: 22
  3118. isPPtrCurve: 0
  3119. - serializedVersion: 2
  3120. path: 1206802440
  3121. attribute: 1840221041
  3122. script: {fileID: 0}
  3123. typeID: 23
  3124. customType: 22
  3125. isPPtrCurve: 0
  3126. - serializedVersion: 2
  3127. path: 2805682665
  3128. attribute: 1303350129
  3129. script: {fileID: 0}
  3130. typeID: 137
  3131. customType: 22
  3132. isPPtrCurve: 0
  3133. - serializedVersion: 2
  3134. path: 2805682665
  3135. attribute: 1571785585
  3136. script: {fileID: 0}
  3137. typeID: 137
  3138. customType: 22
  3139. isPPtrCurve: 0
  3140. - serializedVersion: 2
  3141. path: 2805682665
  3142. attribute: 1840221041
  3143. script: {fileID: 0}
  3144. typeID: 137
  3145. customType: 22
  3146. isPPtrCurve: 0
  3147. - serializedVersion: 2
  3148. path: 2360778775
  3149. attribute: 1303350129
  3150. script: {fileID: 0}
  3151. typeID: 137
  3152. customType: 22
  3153. isPPtrCurve: 0
  3154. - serializedVersion: 2
  3155. path: 2360778775
  3156. attribute: 1571785585
  3157. script: {fileID: 0}
  3158. typeID: 137
  3159. customType: 22
  3160. isPPtrCurve: 0
  3161. - serializedVersion: 2
  3162. path: 2360778775
  3163. attribute: 1840221041
  3164. script: {fileID: 0}
  3165. typeID: 137
  3166. customType: 22
  3167. isPPtrCurve: 0
  3168. - serializedVersion: 2
  3169. path: 2587211680
  3170. attribute: 1303350129
  3171. script: {fileID: 0}
  3172. typeID: 137
  3173. customType: 22
  3174. isPPtrCurve: 0
  3175. - serializedVersion: 2
  3176. path: 2587211680
  3177. attribute: 1571785585
  3178. script: {fileID: 0}
  3179. typeID: 137
  3180. customType: 22
  3181. isPPtrCurve: 0
  3182. - serializedVersion: 2
  3183. path: 2587211680
  3184. attribute: 1840221041
  3185. script: {fileID: 0}
  3186. typeID: 137
  3187. customType: 22
  3188. isPPtrCurve: 0
  3189. - serializedVersion: 2
  3190. path: 323087407
  3191. attribute: 1303350129
  3192. script: {fileID: 0}
  3193. typeID: 137
  3194. customType: 22
  3195. isPPtrCurve: 0
  3196. - serializedVersion: 2
  3197. path: 323087407
  3198. attribute: 1571785585
  3199. script: {fileID: 0}
  3200. typeID: 137
  3201. customType: 22
  3202. isPPtrCurve: 0
  3203. - serializedVersion: 2
  3204. path: 323087407
  3205. attribute: 1840221041
  3206. script: {fileID: 0}
  3207. typeID: 137
  3208. customType: 22
  3209. isPPtrCurve: 0
  3210. - serializedVersion: 2
  3211. path: 901219568
  3212. attribute: 1303350129
  3213. script: {fileID: 0}
  3214. typeID: 23
  3215. customType: 22
  3216. isPPtrCurve: 0
  3217. - serializedVersion: 2
  3218. path: 901219568
  3219. attribute: 1571785585
  3220. script: {fileID: 0}
  3221. typeID: 23
  3222. customType: 22
  3223. isPPtrCurve: 0
  3224. - serializedVersion: 2
  3225. path: 901219568
  3226. attribute: 1218664834
  3227. script: {fileID: 0}
  3228. typeID: 23
  3229. customType: 22
  3230. isPPtrCurve: 0
  3231. - serializedVersion: 2
  3232. path: 901219568
  3233. attribute: 1487100290
  3234. script: {fileID: 0}
  3235. typeID: 23
  3236. customType: 22
  3237. isPPtrCurve: 0
  3238. - serializedVersion: 2
  3239. path: 901219568
  3240. attribute: 1755535746
  3241. script: {fileID: 0}
  3242. typeID: 23
  3243. customType: 22
  3244. isPPtrCurve: 0
  3245. - serializedVersion: 2
  3246. path: 2137268883
  3247. attribute: 2381303703
  3248. script: {fileID: 0}
  3249. typeID: 23
  3250. customType: 22
  3251. isPPtrCurve: 0
  3252. - serializedVersion: 2
  3253. path: 2137268883
  3254. attribute: 2412453992
  3255. script: {fileID: 0}
  3256. typeID: 23
  3257. customType: 22
  3258. isPPtrCurve: 0
  3259. - serializedVersion: 2
  3260. path: 2586430553
  3261. attribute: 2086281974
  3262. script: {fileID: 0}
  3263. typeID: 1
  3264. customType: 0
  3265. isPPtrCurve: 0
  3266. - serializedVersion: 2
  3267. path: 3995275959
  3268. attribute: 1303350129
  3269. script: {fileID: 0}
  3270. typeID: 23
  3271. customType: 22
  3272. isPPtrCurve: 0
  3273. - serializedVersion: 2
  3274. path: 3995275959
  3275. attribute: 1571785585
  3276. script: {fileID: 0}
  3277. typeID: 23
  3278. customType: 22
  3279. isPPtrCurve: 0
  3280. - serializedVersion: 2
  3281. path: 3995275959
  3282. attribute: 1840221041
  3283. script: {fileID: 0}
  3284. typeID: 23
  3285. customType: 22
  3286. isPPtrCurve: 0
  3287. - serializedVersion: 2
  3288. path: 3995275959
  3289. attribute: 1218664834
  3290. script: {fileID: 0}
  3291. typeID: 23
  3292. customType: 22
  3293. isPPtrCurve: 0
  3294. - serializedVersion: 2
  3295. path: 3995275959
  3296. attribute: 1487100290
  3297. script: {fileID: 0}
  3298. typeID: 23
  3299. customType: 22
  3300. isPPtrCurve: 0
  3301. - serializedVersion: 2
  3302. path: 3995275959
  3303. attribute: 1755535746
  3304. script: {fileID: 0}
  3305. typeID: 23
  3306. customType: 22
  3307. isPPtrCurve: 0
  3308. - serializedVersion: 2
  3309. path: 2184556806
  3310. attribute: 1303350129
  3311. script: {fileID: 0}
  3312. typeID: 137
  3313. customType: 22
  3314. isPPtrCurve: 0
  3315. - serializedVersion: 2
  3316. path: 2184556806
  3317. attribute: 1571785585
  3318. script: {fileID: 0}
  3319. typeID: 137
  3320. customType: 22
  3321. isPPtrCurve: 0
  3322. - serializedVersion: 2
  3323. path: 2184556806
  3324. attribute: 1840221041
  3325. script: {fileID: 0}
  3326. typeID: 137
  3327. customType: 22
  3328. isPPtrCurve: 0
  3329. - serializedVersion: 2
  3330. path: 2184556806
  3331. attribute: 1218664834
  3332. script: {fileID: 0}
  3333. typeID: 137
  3334. customType: 22
  3335. isPPtrCurve: 0
  3336. - serializedVersion: 2
  3337. path: 2184556806
  3338. attribute: 1487100290
  3339. script: {fileID: 0}
  3340. typeID: 137
  3341. customType: 22
  3342. isPPtrCurve: 0
  3343. - serializedVersion: 2
  3344. path: 2184556806
  3345. attribute: 1755535746
  3346. script: {fileID: 0}
  3347. typeID: 137
  3348. customType: 22
  3349. isPPtrCurve: 0
  3350. - serializedVersion: 2
  3351. path: 3561663156
  3352. attribute: 2381303703
  3353. script: {fileID: 0}
  3354. typeID: 23
  3355. customType: 22
  3356. isPPtrCurve: 0
  3357. - serializedVersion: 2
  3358. path: 2634251547
  3359. attribute: 0
  3360. script: {fileID: 0}
  3361. typeID: 23
  3362. customType: 21
  3363. isPPtrCurve: 1
  3364. - serializedVersion: 2
  3365. path: 2634251547
  3366. attribute: 169606256
  3367. script: {fileID: 0}
  3368. typeID: 23
  3369. customType: 22
  3370. isPPtrCurve: 0
  3371. - serializedVersion: 2
  3372. path: 2634251547
  3373. attribute: 438041712
  3374. script: {fileID: 0}
  3375. typeID: 23
  3376. customType: 22
  3377. isPPtrCurve: 0
  3378. - serializedVersion: 2
  3379. path: 2634251547
  3380. attribute: 974912624
  3381. script: {fileID: 0}
  3382. typeID: 23
  3383. customType: 22
  3384. isPPtrCurve: 0
  3385. - serializedVersion: 2
  3386. path: 2634251547
  3387. attribute: 109495689
  3388. script: {fileID: 0}
  3389. typeID: 23
  3390. customType: 22
  3391. isPPtrCurve: 0
  3392. - serializedVersion: 2
  3393. path: 2634251547
  3394. attribute: 377931145
  3395. script: {fileID: 0}
  3396. typeID: 23
  3397. customType: 22
  3398. isPPtrCurve: 0
  3399. - serializedVersion: 2
  3400. path: 2634251547
  3401. attribute: 914802057
  3402. script: {fileID: 0}
  3403. typeID: 23
  3404. customType: 22
  3405. isPPtrCurve: 0
  3406. - serializedVersion: 2
  3407. path: 67775649
  3408. attribute: 169606256
  3409. script: {fileID: 0}
  3410. typeID: 23
  3411. customType: 22
  3412. isPPtrCurve: 0
  3413. - serializedVersion: 2
  3414. path: 67775649
  3415. attribute: 438041712
  3416. script: {fileID: 0}
  3417. typeID: 23
  3418. customType: 22
  3419. isPPtrCurve: 0
  3420. - serializedVersion: 2
  3421. path: 67775649
  3422. attribute: 974912624
  3423. script: {fileID: 0}
  3424. typeID: 23
  3425. customType: 22
  3426. isPPtrCurve: 0
  3427. - serializedVersion: 2
  3428. path: 67775649
  3429. attribute: 109495689
  3430. script: {fileID: 0}
  3431. typeID: 23
  3432. customType: 22
  3433. isPPtrCurve: 0
  3434. - serializedVersion: 2
  3435. path: 67775649
  3436. attribute: 377931145
  3437. script: {fileID: 0}
  3438. typeID: 23
  3439. customType: 22
  3440. isPPtrCurve: 0
  3441. - serializedVersion: 2
  3442. path: 67775649
  3443. attribute: 914802057
  3444. script: {fileID: 0}
  3445. typeID: 23
  3446. customType: 22
  3447. isPPtrCurve: 0
  3448. - serializedVersion: 2
  3449. path: 1930239031
  3450. attribute: 1303350129
  3451. script: {fileID: 0}
  3452. typeID: 23
  3453. customType: 22
  3454. isPPtrCurve: 0
  3455. - serializedVersion: 2
  3456. path: 1930239031
  3457. attribute: 1571785585
  3458. script: {fileID: 0}
  3459. typeID: 23
  3460. customType: 22
  3461. isPPtrCurve: 0
  3462. - serializedVersion: 2
  3463. path: 1930239031
  3464. attribute: 1840221041
  3465. script: {fileID: 0}
  3466. typeID: 23
  3467. customType: 22
  3468. isPPtrCurve: 0
  3469. - serializedVersion: 2
  3470. path: 1930239031
  3471. attribute: 438041712
  3472. script: {fileID: 0}
  3473. typeID: 23
  3474. customType: 22
  3475. isPPtrCurve: 0
  3476. - serializedVersion: 2
  3477. path: 1930239031
  3478. attribute: 706477168
  3479. script: {fileID: 0}
  3480. typeID: 23
  3481. customType: 22
  3482. isPPtrCurve: 0
  3483. - serializedVersion: 2
  3484. path: 1930239031
  3485. attribute: 974912624
  3486. script: {fileID: 0}
  3487. typeID: 23
  3488. customType: 22
  3489. isPPtrCurve: 0
  3490. - serializedVersion: 2
  3491. path: 1930239031
  3492. attribute: 377931145
  3493. script: {fileID: 0}
  3494. typeID: 23
  3495. customType: 22
  3496. isPPtrCurve: 0
  3497. - serializedVersion: 2
  3498. path: 1930239031
  3499. attribute: 646366601
  3500. script: {fileID: 0}
  3501. typeID: 23
  3502. customType: 22
  3503. isPPtrCurve: 0
  3504. - serializedVersion: 2
  3505. path: 1930239031
  3506. attribute: 914802057
  3507. script: {fileID: 0}
  3508. typeID: 23
  3509. customType: 22
  3510. isPPtrCurve: 0
  3511. - serializedVersion: 2
  3512. path: 1206802440
  3513. attribute: 2108656497
  3514. script: {fileID: 0}
  3515. typeID: 23
  3516. customType: 22
  3517. isPPtrCurve: 0
  3518. - serializedVersion: 2
  3519. path: 2805682665
  3520. attribute: 2108656497
  3521. script: {fileID: 0}
  3522. typeID: 137
  3523. customType: 22
  3524. isPPtrCurve: 0
  3525. - serializedVersion: 2
  3526. path: 2360778775
  3527. attribute: 2108656497
  3528. script: {fileID: 0}
  3529. typeID: 137
  3530. customType: 22
  3531. isPPtrCurve: 0
  3532. - serializedVersion: 2
  3533. path: 2587211680
  3534. attribute: 2108656497
  3535. script: {fileID: 0}
  3536. typeID: 137
  3537. customType: 22
  3538. isPPtrCurve: 0
  3539. - serializedVersion: 2
  3540. path: 323087407
  3541. attribute: 2108656497
  3542. script: {fileID: 0}
  3543. typeID: 137
  3544. customType: 22
  3545. isPPtrCurve: 0
  3546. - serializedVersion: 2
  3547. path: 901219568
  3548. attribute: 1840221041
  3549. script: {fileID: 0}
  3550. typeID: 23
  3551. customType: 22
  3552. isPPtrCurve: 0
  3553. - serializedVersion: 2
  3554. path: 901219568
  3555. attribute: 2108656497
  3556. script: {fileID: 0}
  3557. typeID: 23
  3558. customType: 22
  3559. isPPtrCurve: 0
  3560. - serializedVersion: 2
  3561. path: 901219568
  3562. attribute: 2023971202
  3563. script: {fileID: 0}
  3564. typeID: 23
  3565. customType: 22
  3566. isPPtrCurve: 0
  3567. - serializedVersion: 2
  3568. path: 3995275959
  3569. attribute: 2108656497
  3570. script: {fileID: 0}
  3571. typeID: 23
  3572. customType: 22
  3573. isPPtrCurve: 0
  3574. - serializedVersion: 2
  3575. path: 3995275959
  3576. attribute: 2023971202
  3577. script: {fileID: 0}
  3578. typeID: 23
  3579. customType: 22
  3580. isPPtrCurve: 0
  3581. - serializedVersion: 2
  3582. path: 2184556806
  3583. attribute: 2108656497
  3584. script: {fileID: 0}
  3585. typeID: 137
  3586. customType: 22
  3587. isPPtrCurve: 0
  3588. - serializedVersion: 2
  3589. path: 2184556806
  3590. attribute: 2023971202
  3591. script: {fileID: 0}
  3592. typeID: 137
  3593. customType: 22
  3594. isPPtrCurve: 0
  3595. pptrCurveMapping:
  3596. - {fileID: 2100000, guid: ed03e77c39549b34fa414d4e5f970ade, type: 2}
  3597. - {fileID: 2100000, guid: 67ffbb492f3d2384d9b7dc74c81626bb, type: 2}
  3598. m_AnimationClipSettings:
  3599. serializedVersion: 2
  3600. m_AdditiveReferencePoseClip: {fileID: 0}
  3601. m_AdditiveReferencePoseTime: 0
  3602. m_StartTime: 0
  3603. m_StopTime: 3.9666667
  3604. m_OrientationOffsetY: 0
  3605. m_Level: 0
  3606. m_CycleOffset: 0
  3607. m_HasAdditiveReferencePose: 0
  3608. m_LoopTime: 0
  3609. m_LoopBlend: 0
  3610. m_LoopBlendOrientation: 0
  3611. m_LoopBlendPositionY: 0
  3612. m_LoopBlendPositionXZ: 0
  3613. m_KeepOriginalOrientation: 0
  3614. m_KeepOriginalPositionY: 1
  3615. m_KeepOriginalPositionXZ: 0
  3616. m_HeightFromFeet: 0
  3617. m_Mirror: 0
  3618. m_EditorCurves:
  3619. - curve:
  3620. serializedVersion: 2
  3621. m_Curve:
  3622. - serializedVersion: 3
  3623. time: 0.95
  3624. value: 0
  3625. inSlope: Infinity
  3626. outSlope: 0.7228916
  3627. tangentMode: 69
  3628. weightedMode: 0
  3629. inWeight: 0
  3630. outWeight: 0
  3631. - serializedVersion: 3
  3632. time: 2.3333333
  3633. value: 1
  3634. inSlope: Infinity
  3635. outSlope: Infinity
  3636. tangentMode: 103
  3637. weightedMode: 0
  3638. inWeight: 0
  3639. outWeight: 0
  3640. - serializedVersion: 3
  3641. time: 3.95
  3642. value: 1
  3643. inSlope: Infinity
  3644. outSlope: Infinity
  3645. tangentMode: 103
  3646. weightedMode: 0
  3647. inWeight: 0
  3648. outWeight: 0
  3649. m_PreInfinity: 2
  3650. m_PostInfinity: 2
  3651. m_RotationOrder: 4
  3652. attribute: m_IsActive
  3653. path: BasketballCourt (1)
  3654. classID: 1
  3655. script: {fileID: 0}
  3656. - curve:
  3657. serializedVersion: 2
  3658. m_Curve:
  3659. - serializedVersion: 3
  3660. time: 0
  3661. value: 0
  3662. inSlope: Infinity
  3663. outSlope: Infinity
  3664. tangentMode: 103
  3665. weightedMode: 0
  3666. inWeight: 0
  3667. outWeight: 0
  3668. - serializedVersion: 3
  3669. time: 2.45
  3670. value: 1
  3671. inSlope: Infinity
  3672. outSlope: Infinity
  3673. tangentMode: 103
  3674. weightedMode: 0
  3675. inWeight: 0
  3676. outWeight: 0
  3677. m_PreInfinity: 2
  3678. m_PostInfinity: 2
  3679. m_RotationOrder: 4
  3680. attribute: m_Enabled
  3681. path: BasketballCourt (1)/diman
  3682. classID: 23
  3683. script: {fileID: 0}
  3684. - curve:
  3685. serializedVersion: 2
  3686. m_Curve:
  3687. - serializedVersion: 3
  3688. time: 0
  3689. value: 0
  3690. inSlope: Infinity
  3691. outSlope: Infinity
  3692. tangentMode: 103
  3693. weightedMode: 0
  3694. inWeight: 0
  3695. outWeight: 0
  3696. - serializedVersion: 3
  3697. time: 0.95
  3698. value: 1
  3699. inSlope: Infinity
  3700. outSlope: Infinity
  3701. tangentMode: 103
  3702. weightedMode: 0
  3703. inWeight: 0
  3704. outWeight: 0
  3705. - serializedVersion: 3
  3706. time: 3.95
  3707. value: 1
  3708. inSlope: Infinity
  3709. outSlope: Infinity
  3710. tangentMode: 103
  3711. weightedMode: 0
  3712. inWeight: 0
  3713. outWeight: 0
  3714. m_PreInfinity: 2
  3715. m_PostInfinity: 2
  3716. m_RotationOrder: 4
  3717. attribute: m_IsActive
  3718. path: BasketballLine01
  3719. classID: 1
  3720. script: {fileID: 0}
  3721. - curve:
  3722. serializedVersion: 2
  3723. m_Curve:
  3724. - serializedVersion: 3
  3725. time: 0.95
  3726. value: 1
  3727. inSlope: 0
  3728. outSlope: 0
  3729. tangentMode: 69
  3730. weightedMode: 0
  3731. inWeight: 0.33333334
  3732. outWeight: 0.33333334
  3733. - serializedVersion: 3
  3734. time: 2.0666666
  3735. value: 1
  3736. inSlope: -0
  3737. outSlope: 0
  3738. tangentMode: 69
  3739. weightedMode: 0
  3740. inWeight: 0.33333334
  3741. outWeight: 0.33333334
  3742. - serializedVersion: 3
  3743. time: 3.3166666
  3744. value: 1
  3745. inSlope: -0
  3746. outSlope: 0
  3747. tangentMode: 69
  3748. weightedMode: 0
  3749. inWeight: 0.33333334
  3750. outWeight: 0.33333334
  3751. - serializedVersion: 3
  3752. time: 3.95
  3753. value: 1
  3754. inSlope: -0
  3755. outSlope: 0
  3756. tangentMode: 69
  3757. weightedMode: 0
  3758. inWeight: 0.33333334
  3759. outWeight: 0.33333334
  3760. m_PreInfinity: 2
  3761. m_PostInfinity: 2
  3762. m_RotationOrder: 4
  3763. attribute: material._EmissionMap_ST.x
  3764. path: BasketballLine01
  3765. classID: 23
  3766. script: {fileID: 0}
  3767. - curve:
  3768. serializedVersion: 2
  3769. m_Curve:
  3770. - serializedVersion: 3
  3771. time: 0.95
  3772. value: 1
  3773. inSlope: 0
  3774. outSlope: 0
  3775. tangentMode: 69
  3776. weightedMode: 0
  3777. inWeight: 0.33333334
  3778. outWeight: 0.33333334
  3779. - serializedVersion: 3
  3780. time: 2.0666666
  3781. value: 1
  3782. inSlope: -0
  3783. outSlope: 0
  3784. tangentMode: 69
  3785. weightedMode: 0
  3786. inWeight: 0.33333334
  3787. outWeight: 0.33333334
  3788. - serializedVersion: 3
  3789. time: 3.3166666
  3790. value: 1
  3791. inSlope: -0
  3792. outSlope: 0
  3793. tangentMode: 69
  3794. weightedMode: 0
  3795. inWeight: 0.33333334
  3796. outWeight: 0.33333334
  3797. - serializedVersion: 3
  3798. time: 3.95
  3799. value: 1
  3800. inSlope: -0
  3801. outSlope: 0
  3802. tangentMode: 69
  3803. weightedMode: 0
  3804. inWeight: 0.33333334
  3805. outWeight: 0.33333334
  3806. m_PreInfinity: 2
  3807. m_PostInfinity: 2
  3808. m_RotationOrder: 4
  3809. attribute: material._EmissionMap_ST.y
  3810. path: BasketballLine01
  3811. classID: 23
  3812. script: {fileID: 0}
  3813. - curve:
  3814. serializedVersion: 2
  3815. m_Curve:
  3816. - serializedVersion: 3
  3817. time: 0.95
  3818. value: 0.18
  3819. inSlope: 0
  3820. outSlope: 1.6208956
  3821. tangentMode: 69
  3822. weightedMode: 0
  3823. inWeight: 0.33333334
  3824. outWeight: 0.33333334
  3825. - serializedVersion: 3
  3826. time: 2.0666666
  3827. value: 1.99
  3828. inSlope: 1.6208956
  3829. outSlope: 0.83893794
  3830. tangentMode: 69
  3831. weightedMode: 0
  3832. inWeight: 0.33333334
  3833. outWeight: 0.33333334
  3834. - serializedVersion: 3
  3835. time: 3.3166666
  3836. value: 3.0386724
  3837. inSlope: 0.83893794
  3838. outSlope: 0.838938
  3839. tangentMode: 69
  3840. weightedMode: 0
  3841. inWeight: 0.33333334
  3842. outWeight: 0.33333334
  3843. - serializedVersion: 3
  3844. time: 3.95
  3845. value: 3.57
  3846. inSlope: 0.838938
  3847. outSlope: 0
  3848. tangentMode: 69
  3849. weightedMode: 0
  3850. inWeight: 0.33333334
  3851. outWeight: 0.33333334
  3852. m_PreInfinity: 2
  3853. m_PostInfinity: 2
  3854. m_RotationOrder: 4
  3855. attribute: material._EmissionMap_ST.z
  3856. path: BasketballLine01
  3857. classID: 23
  3858. script: {fileID: 0}
  3859. - curve:
  3860. serializedVersion: 2
  3861. m_Curve:
  3862. - serializedVersion: 3
  3863. time: 0.95
  3864. value: 0
  3865. inSlope: 0
  3866. outSlope: 0
  3867. tangentMode: 69
  3868. weightedMode: 0
  3869. inWeight: 0.33333334
  3870. outWeight: 0.33333334
  3871. - serializedVersion: 3
  3872. time: 2.0666666
  3873. value: 0
  3874. inSlope: -0
  3875. outSlope: 0
  3876. tangentMode: 69
  3877. weightedMode: 0
  3878. inWeight: 0.33333334
  3879. outWeight: 0.33333334
  3880. - serializedVersion: 3
  3881. time: 3.3166666
  3882. value: 0
  3883. inSlope: -0
  3884. outSlope: 0
  3885. tangentMode: 69
  3886. weightedMode: 0
  3887. inWeight: 0.33333334
  3888. outWeight: 0.33333334
  3889. - serializedVersion: 3
  3890. time: 3.95
  3891. value: 0
  3892. inSlope: -0
  3893. outSlope: 0
  3894. tangentMode: 69
  3895. weightedMode: 0
  3896. inWeight: 0.33333334
  3897. outWeight: 0.33333334
  3898. m_PreInfinity: 2
  3899. m_PostInfinity: 2
  3900. m_RotationOrder: 4
  3901. attribute: material._EmissionMap_ST.w
  3902. path: BasketballLine01
  3903. classID: 23
  3904. script: {fileID: 0}
  3905. - curve:
  3906. serializedVersion: 2
  3907. m_Curve:
  3908. - serializedVersion: 3
  3909. time: 0.95
  3910. value: 1
  3911. inSlope: 0
  3912. outSlope: 0
  3913. tangentMode: 69
  3914. weightedMode: 0
  3915. inWeight: 0.33333334
  3916. outWeight: 0.33333334
  3917. - serializedVersion: 3
  3918. time: 2.0666666
  3919. value: 1
  3920. inSlope: -0
  3921. outSlope: 0
  3922. tangentMode: 69
  3923. weightedMode: 0
  3924. inWeight: 0.33333334
  3925. outWeight: 0.33333334
  3926. - serializedVersion: 3
  3927. time: 3.3166666
  3928. value: 1
  3929. inSlope: -0
  3930. outSlope: 0
  3931. tangentMode: 69
  3932. weightedMode: 0
  3933. inWeight: 0.33333334
  3934. outWeight: 0.33333334
  3935. - serializedVersion: 3
  3936. time: 3.95
  3937. value: 1
  3938. inSlope: -0
  3939. outSlope: 0
  3940. tangentMode: 69
  3941. weightedMode: 0
  3942. inWeight: 0.33333334
  3943. outWeight: 0.33333334
  3944. m_PreInfinity: 2
  3945. m_PostInfinity: 2
  3946. m_RotationOrder: 4
  3947. attribute: material._MainTex_ST.x
  3948. path: BasketballLine01
  3949. classID: 23
  3950. script: {fileID: 0}
  3951. - curve:
  3952. serializedVersion: 2
  3953. m_Curve:
  3954. - serializedVersion: 3
  3955. time: 0.95
  3956. value: 1
  3957. inSlope: 0
  3958. outSlope: 0
  3959. tangentMode: 69
  3960. weightedMode: 0
  3961. inWeight: 0.33333334
  3962. outWeight: 0.33333334
  3963. - serializedVersion: 3
  3964. time: 2.0666666
  3965. value: 1
  3966. inSlope: -0
  3967. outSlope: 0
  3968. tangentMode: 69
  3969. weightedMode: 0
  3970. inWeight: 0.33333334
  3971. outWeight: 0.33333334
  3972. - serializedVersion: 3
  3973. time: 3.3166666
  3974. value: 1
  3975. inSlope: -0
  3976. outSlope: 0
  3977. tangentMode: 69
  3978. weightedMode: 0
  3979. inWeight: 0.33333334
  3980. outWeight: 0.33333334
  3981. - serializedVersion: 3
  3982. time: 3.95
  3983. value: 1
  3984. inSlope: -0
  3985. outSlope: 0
  3986. tangentMode: 69
  3987. weightedMode: 0
  3988. inWeight: 0.33333334
  3989. outWeight: 0.33333334
  3990. m_PreInfinity: 2
  3991. m_PostInfinity: 2
  3992. m_RotationOrder: 4
  3993. attribute: material._MainTex_ST.y
  3994. path: BasketballLine01
  3995. classID: 23
  3996. script: {fileID: 0}
  3997. - curve:
  3998. serializedVersion: 2
  3999. m_Curve:
  4000. - serializedVersion: 3
  4001. time: 0.95
  4002. value: 0.18
  4003. inSlope: 0
  4004. outSlope: 1.6208956
  4005. tangentMode: 69
  4006. weightedMode: 0
  4007. inWeight: 0.33333334
  4008. outWeight: 0.33333334
  4009. - serializedVersion: 3
  4010. time: 2.0666666
  4011. value: 1.99
  4012. inSlope: 1.6208956
  4013. outSlope: 0.83893794
  4014. tangentMode: 69
  4015. weightedMode: 0
  4016. inWeight: 0.33333334
  4017. outWeight: 0.33333334
  4018. - serializedVersion: 3
  4019. time: 3.3166666
  4020. value: 3.0386724
  4021. inSlope: 0.83893794
  4022. outSlope: 0.838938
  4023. tangentMode: 69
  4024. weightedMode: 0
  4025. inWeight: 0.33333334
  4026. outWeight: 0.33333334
  4027. - serializedVersion: 3
  4028. time: 3.95
  4029. value: 3.57
  4030. inSlope: 0.838938
  4031. outSlope: 0
  4032. tangentMode: 69
  4033. weightedMode: 0
  4034. inWeight: 0.33333334
  4035. outWeight: 0.33333334
  4036. m_PreInfinity: 2
  4037. m_PostInfinity: 2
  4038. m_RotationOrder: 4
  4039. attribute: material._MainTex_ST.z
  4040. path: BasketballLine01
  4041. classID: 23
  4042. script: {fileID: 0}
  4043. - curve:
  4044. serializedVersion: 2
  4045. m_Curve:
  4046. - serializedVersion: 3
  4047. time: 0.95
  4048. value: 0
  4049. inSlope: 0
  4050. outSlope: 0
  4051. tangentMode: 69
  4052. weightedMode: 0
  4053. inWeight: 0.33333334
  4054. outWeight: 0.33333334
  4055. - serializedVersion: 3
  4056. time: 2.0666666
  4057. value: 0
  4058. inSlope: -0
  4059. outSlope: 0
  4060. tangentMode: 69
  4061. weightedMode: 0
  4062. inWeight: 0.33333334
  4063. outWeight: 0.33333334
  4064. - serializedVersion: 3
  4065. time: 3.3166666
  4066. value: 0
  4067. inSlope: -0
  4068. outSlope: 0
  4069. tangentMode: 69
  4070. weightedMode: 0
  4071. inWeight: 0.33333334
  4072. outWeight: 0.33333334
  4073. - serializedVersion: 3
  4074. time: 3.95
  4075. value: 0
  4076. inSlope: -0
  4077. outSlope: 0
  4078. tangentMode: 69
  4079. weightedMode: 0
  4080. inWeight: 0.33333334
  4081. outWeight: 0.33333334
  4082. m_PreInfinity: 2
  4083. m_PostInfinity: 2
  4084. m_RotationOrder: 4
  4085. attribute: material._MainTex_ST.w
  4086. path: BasketballLine01
  4087. classID: 23
  4088. script: {fileID: 0}
  4089. - curve:
  4090. serializedVersion: 2
  4091. m_Curve:
  4092. - serializedVersion: 3
  4093. time: 0
  4094. value: 0
  4095. inSlope: Infinity
  4096. outSlope: Infinity
  4097. tangentMode: 103
  4098. weightedMode: 0
  4099. inWeight: 0
  4100. outWeight: 0
  4101. - serializedVersion: 3
  4102. time: 0.95
  4103. value: 1
  4104. inSlope: Infinity
  4105. outSlope: Infinity
  4106. tangentMode: 103
  4107. weightedMode: 0
  4108. inWeight: 0
  4109. outWeight: 0
  4110. - serializedVersion: 3
  4111. time: 3.95
  4112. value: 1
  4113. inSlope: Infinity
  4114. outSlope: Infinity
  4115. tangentMode: 103
  4116. weightedMode: 0
  4117. inWeight: 0
  4118. outWeight: 0
  4119. m_PreInfinity: 2
  4120. m_PostInfinity: 2
  4121. m_RotationOrder: 4
  4122. attribute: m_IsActive
  4123. path: BasketballLine02
  4124. classID: 1
  4125. script: {fileID: 0}
  4126. - curve:
  4127. serializedVersion: 2
  4128. m_Curve:
  4129. - serializedVersion: 3
  4130. time: 0.95
  4131. value: 0.24
  4132. inSlope: 0
  4133. outSlope: 0
  4134. tangentMode: 69
  4135. weightedMode: 0
  4136. inWeight: 0.33333334
  4137. outWeight: 0.33333334
  4138. - serializedVersion: 3
  4139. time: 2.0666666
  4140. value: 0.24
  4141. inSlope: -0
  4142. outSlope: 0
  4143. tangentMode: 69
  4144. weightedMode: 0
  4145. inWeight: 0.33333334
  4146. outWeight: 0.33333334
  4147. - serializedVersion: 3
  4148. time: 3.95
  4149. value: 0.24
  4150. inSlope: -0
  4151. outSlope: 0
  4152. tangentMode: 69
  4153. weightedMode: 0
  4154. inWeight: 0.33333334
  4155. outWeight: 0.33333334
  4156. m_PreInfinity: 2
  4157. m_PostInfinity: 2
  4158. m_RotationOrder: 4
  4159. attribute: material._EmissionMap_ST.x
  4160. path: BasketballLine02
  4161. classID: 23
  4162. script: {fileID: 0}
  4163. - curve:
  4164. serializedVersion: 2
  4165. m_Curve:
  4166. - serializedVersion: 3
  4167. time: 0.95
  4168. value: 1
  4169. inSlope: 0
  4170. outSlope: 0
  4171. tangentMode: 69
  4172. weightedMode: 0
  4173. inWeight: 0.33333334
  4174. outWeight: 0.33333334
  4175. - serializedVersion: 3
  4176. time: 2.0666666
  4177. value: 1
  4178. inSlope: -0
  4179. outSlope: 0
  4180. tangentMode: 69
  4181. weightedMode: 0
  4182. inWeight: 0.33333334
  4183. outWeight: 0.33333334
  4184. - serializedVersion: 3
  4185. time: 3.95
  4186. value: 1
  4187. inSlope: -0
  4188. outSlope: 0
  4189. tangentMode: 69
  4190. weightedMode: 0
  4191. inWeight: 0.33333334
  4192. outWeight: 0.33333334
  4193. m_PreInfinity: 2
  4194. m_PostInfinity: 2
  4195. m_RotationOrder: 4
  4196. attribute: material._EmissionMap_ST.y
  4197. path: BasketballLine02
  4198. classID: 23
  4199. script: {fileID: 0}
  4200. - curve:
  4201. serializedVersion: 2
  4202. m_Curve:
  4203. - serializedVersion: 3
  4204. time: 0.95
  4205. value: -0.45
  4206. inSlope: 0
  4207. outSlope: 0.55522394
  4208. tangentMode: 69
  4209. weightedMode: 0
  4210. inWeight: 0.33333334
  4211. outWeight: 0.33333334
  4212. - serializedVersion: 3
  4213. time: 2.0666666
  4214. value: 0.17
  4215. inSlope: 0.55522394
  4216. outSlope: 0.93982303
  4217. tangentMode: 69
  4218. weightedMode: 0
  4219. inWeight: 0.33333334
  4220. outWeight: 0.33333334
  4221. - serializedVersion: 3
  4222. time: 3.95
  4223. value: 1.94
  4224. inSlope: 0.93982303
  4225. outSlope: 0
  4226. tangentMode: 69
  4227. weightedMode: 0
  4228. inWeight: 0.33333334
  4229. outWeight: 0.33333334
  4230. m_PreInfinity: 2
  4231. m_PostInfinity: 2
  4232. m_RotationOrder: 4
  4233. attribute: material._EmissionMap_ST.z
  4234. path: BasketballLine02
  4235. classID: 23
  4236. script: {fileID: 0}
  4237. - curve:
  4238. serializedVersion: 2
  4239. m_Curve:
  4240. - serializedVersion: 3
  4241. time: 0.95
  4242. value: 0
  4243. inSlope: 0
  4244. outSlope: 0
  4245. tangentMode: 69
  4246. weightedMode: 0
  4247. inWeight: 0.33333334
  4248. outWeight: 0.33333334
  4249. - serializedVersion: 3
  4250. time: 2.0666666
  4251. value: 0
  4252. inSlope: -0
  4253. outSlope: 0
  4254. tangentMode: 69
  4255. weightedMode: 0
  4256. inWeight: 0.33333334
  4257. outWeight: 0.33333334
  4258. - serializedVersion: 3
  4259. time: 3.95
  4260. value: 0
  4261. inSlope: -0
  4262. outSlope: 0
  4263. tangentMode: 69
  4264. weightedMode: 0
  4265. inWeight: 0.33333334
  4266. outWeight: 0.33333334
  4267. m_PreInfinity: 2
  4268. m_PostInfinity: 2
  4269. m_RotationOrder: 4
  4270. attribute: material._EmissionMap_ST.w
  4271. path: BasketballLine02
  4272. classID: 23
  4273. script: {fileID: 0}
  4274. - curve:
  4275. serializedVersion: 2
  4276. m_Curve:
  4277. - serializedVersion: 3
  4278. time: 0.95
  4279. value: 0.24
  4280. inSlope: 0
  4281. outSlope: 0
  4282. tangentMode: 69
  4283. weightedMode: 0
  4284. inWeight: 0.33333334
  4285. outWeight: 0.33333334
  4286. - serializedVersion: 3
  4287. time: 2.0666666
  4288. value: 0.24
  4289. inSlope: -0
  4290. outSlope: 0
  4291. tangentMode: 69
  4292. weightedMode: 0
  4293. inWeight: 0.33333334
  4294. outWeight: 0.33333334
  4295. - serializedVersion: 3
  4296. time: 3.95
  4297. value: 0.24
  4298. inSlope: -0
  4299. outSlope: 0
  4300. tangentMode: 69
  4301. weightedMode: 0
  4302. inWeight: 0.33333334
  4303. outWeight: 0.33333334
  4304. m_PreInfinity: 2
  4305. m_PostInfinity: 2
  4306. m_RotationOrder: 4
  4307. attribute: material._MainTex_ST.x
  4308. path: BasketballLine02
  4309. classID: 23
  4310. script: {fileID: 0}
  4311. - curve:
  4312. serializedVersion: 2
  4313. m_Curve:
  4314. - serializedVersion: 3
  4315. time: 0.95
  4316. value: 1
  4317. inSlope: 0
  4318. outSlope: 0
  4319. tangentMode: 69
  4320. weightedMode: 0
  4321. inWeight: 0.33333334
  4322. outWeight: 0.33333334
  4323. - serializedVersion: 3
  4324. time: 2.0666666
  4325. value: 1
  4326. inSlope: -0
  4327. outSlope: 0
  4328. tangentMode: 69
  4329. weightedMode: 0
  4330. inWeight: 0.33333334
  4331. outWeight: 0.33333334
  4332. - serializedVersion: 3
  4333. time: 3.95
  4334. value: 1
  4335. inSlope: -0
  4336. outSlope: 0
  4337. tangentMode: 69
  4338. weightedMode: 0
  4339. inWeight: 0.33333334
  4340. outWeight: 0.33333334
  4341. m_PreInfinity: 2
  4342. m_PostInfinity: 2
  4343. m_RotationOrder: 4
  4344. attribute: material._MainTex_ST.y
  4345. path: BasketballLine02
  4346. classID: 23
  4347. script: {fileID: 0}
  4348. - curve:
  4349. serializedVersion: 2
  4350. m_Curve:
  4351. - serializedVersion: 3
  4352. time: 0.95
  4353. value: -0.45
  4354. inSlope: 0
  4355. outSlope: 0.55522394
  4356. tangentMode: 69
  4357. weightedMode: 0
  4358. inWeight: 0.33333334
  4359. outWeight: 0.33333334
  4360. - serializedVersion: 3
  4361. time: 2.0666666
  4362. value: 0.17
  4363. inSlope: 0.55522394
  4364. outSlope: 0.93982303
  4365. tangentMode: 69
  4366. weightedMode: 0
  4367. inWeight: 0.33333334
  4368. outWeight: 0.33333334
  4369. - serializedVersion: 3
  4370. time: 3.95
  4371. value: 1.94
  4372. inSlope: 0.93982303
  4373. outSlope: 0
  4374. tangentMode: 69
  4375. weightedMode: 0
  4376. inWeight: 0.33333334
  4377. outWeight: 0.33333334
  4378. m_PreInfinity: 2
  4379. m_PostInfinity: 2
  4380. m_RotationOrder: 4
  4381. attribute: material._MainTex_ST.z
  4382. path: BasketballLine02
  4383. classID: 23
  4384. script: {fileID: 0}
  4385. - curve:
  4386. serializedVersion: 2
  4387. m_Curve:
  4388. - serializedVersion: 3
  4389. time: 0.95
  4390. value: 0
  4391. inSlope: 0
  4392. outSlope: 0
  4393. tangentMode: 69
  4394. weightedMode: 0
  4395. inWeight: 0.33333334
  4396. outWeight: 0.33333334
  4397. - serializedVersion: 3
  4398. time: 2.0666666
  4399. value: 0
  4400. inSlope: -0
  4401. outSlope: 0
  4402. tangentMode: 69
  4403. weightedMode: 0
  4404. inWeight: 0.33333334
  4405. outWeight: 0.33333334
  4406. - serializedVersion: 3
  4407. time: 3.95
  4408. value: 0
  4409. inSlope: -0
  4410. outSlope: 0
  4411. tangentMode: 69
  4412. weightedMode: 0
  4413. inWeight: 0.33333334
  4414. outWeight: 0.33333334
  4415. m_PreInfinity: 2
  4416. m_PostInfinity: 2
  4417. m_RotationOrder: 4
  4418. attribute: material._MainTex_ST.w
  4419. path: BasketballLine02
  4420. classID: 23
  4421. script: {fileID: 0}
  4422. - curve:
  4423. serializedVersion: 2
  4424. m_Curve:
  4425. - serializedVersion: 3
  4426. time: 0
  4427. value: 0
  4428. inSlope: Infinity
  4429. outSlope: Infinity
  4430. tangentMode: 103
  4431. weightedMode: 0
  4432. inWeight: 0
  4433. outWeight: 0
  4434. - serializedVersion: 3
  4435. time: 0.95
  4436. value: 1
  4437. inSlope: Infinity
  4438. outSlope: Infinity
  4439. tangentMode: 103
  4440. weightedMode: 0
  4441. inWeight: 0
  4442. outWeight: 0
  4443. - serializedVersion: 3
  4444. time: 3.95
  4445. value: 1
  4446. inSlope: Infinity
  4447. outSlope: Infinity
  4448. tangentMode: 103
  4449. weightedMode: 0
  4450. inWeight: 0
  4451. outWeight: 0
  4452. m_PreInfinity: 2
  4453. m_PostInfinity: 2
  4454. m_RotationOrder: 4
  4455. attribute: m_IsActive
  4456. path: BasketballLine03
  4457. classID: 1
  4458. script: {fileID: 0}
  4459. - curve:
  4460. serializedVersion: 2
  4461. m_Curve:
  4462. - serializedVersion: 3
  4463. time: 0.95
  4464. value: 1
  4465. inSlope: 0
  4466. outSlope: 0
  4467. tangentMode: 136
  4468. weightedMode: 0
  4469. inWeight: 0.33333334
  4470. outWeight: 0.33333334
  4471. - serializedVersion: 3
  4472. time: 2.1833334
  4473. value: 1
  4474. inSlope: 0
  4475. outSlope: 0
  4476. tangentMode: 136
  4477. weightedMode: 0
  4478. inWeight: 0.33333334
  4479. outWeight: 0.33333334
  4480. - serializedVersion: 3
  4481. time: 2.4333334
  4482. value: 1
  4483. inSlope: 0
  4484. outSlope: 0
  4485. tangentMode: 136
  4486. weightedMode: 0
  4487. inWeight: 0.33333334
  4488. outWeight: 0.33333334
  4489. - serializedVersion: 3
  4490. time: 3.95
  4491. value: 1
  4492. inSlope: 0
  4493. outSlope: 0
  4494. tangentMode: 136
  4495. weightedMode: 0
  4496. inWeight: 0.33333334
  4497. outWeight: 0.33333334
  4498. m_PreInfinity: 2
  4499. m_PostInfinity: 2
  4500. m_RotationOrder: 4
  4501. attribute: material._Color.r
  4502. path: BasketballLine03
  4503. classID: 23
  4504. script: {fileID: 0}
  4505. - curve:
  4506. serializedVersion: 2
  4507. m_Curve:
  4508. - serializedVersion: 3
  4509. time: 0.95
  4510. value: 1
  4511. inSlope: 0
  4512. outSlope: 0
  4513. tangentMode: 136
  4514. weightedMode: 0
  4515. inWeight: 0.33333334
  4516. outWeight: 0.33333334
  4517. - serializedVersion: 3
  4518. time: 2.1833334
  4519. value: 1
  4520. inSlope: 0
  4521. outSlope: 0
  4522. tangentMode: 136
  4523. weightedMode: 0
  4524. inWeight: 0.33333334
  4525. outWeight: 0.33333334
  4526. - serializedVersion: 3
  4527. time: 2.4333334
  4528. value: 1
  4529. inSlope: 0
  4530. outSlope: 0
  4531. tangentMode: 136
  4532. weightedMode: 0
  4533. inWeight: 0.33333334
  4534. outWeight: 0.33333334
  4535. - serializedVersion: 3
  4536. time: 3.95
  4537. value: 1
  4538. inSlope: 0
  4539. outSlope: 0
  4540. tangentMode: 136
  4541. weightedMode: 0
  4542. inWeight: 0.33333334
  4543. outWeight: 0.33333334
  4544. m_PreInfinity: 2
  4545. m_PostInfinity: 2
  4546. m_RotationOrder: 4
  4547. attribute: material._Color.g
  4548. path: BasketballLine03
  4549. classID: 23
  4550. script: {fileID: 0}
  4551. - curve:
  4552. serializedVersion: 2
  4553. m_Curve:
  4554. - serializedVersion: 3
  4555. time: 0.95
  4556. value: 1
  4557. inSlope: 0
  4558. outSlope: 0
  4559. tangentMode: 136
  4560. weightedMode: 0
  4561. inWeight: 0.33333334
  4562. outWeight: 0.33333334
  4563. - serializedVersion: 3
  4564. time: 2.1833334
  4565. value: 1
  4566. inSlope: 0
  4567. outSlope: 0
  4568. tangentMode: 136
  4569. weightedMode: 0
  4570. inWeight: 0.33333334
  4571. outWeight: 0.33333334
  4572. - serializedVersion: 3
  4573. time: 2.4333334
  4574. value: 1
  4575. inSlope: 0
  4576. outSlope: 0
  4577. tangentMode: 136
  4578. weightedMode: 0
  4579. inWeight: 0.33333334
  4580. outWeight: 0.33333334
  4581. - serializedVersion: 3
  4582. time: 3.95
  4583. value: 1
  4584. inSlope: 0
  4585. outSlope: 0
  4586. tangentMode: 136
  4587. weightedMode: 0
  4588. inWeight: 0.33333334
  4589. outWeight: 0.33333334
  4590. m_PreInfinity: 2
  4591. m_PostInfinity: 2
  4592. m_RotationOrder: 4
  4593. attribute: material._Color.b
  4594. path: BasketballLine03
  4595. classID: 23
  4596. script: {fileID: 0}
  4597. - curve:
  4598. serializedVersion: 2
  4599. m_Curve:
  4600. - serializedVersion: 3
  4601. time: 0.95
  4602. value: 0
  4603. inSlope: 0
  4604. outSlope: 0
  4605. tangentMode: 136
  4606. weightedMode: 0
  4607. inWeight: 0.33333334
  4608. outWeight: 0.33333334
  4609. - serializedVersion: 3
  4610. time: 2.1833334
  4611. value: 0.23921569
  4612. inSlope: 0.25908792
  4613. outSlope: 0.25908792
  4614. tangentMode: 136
  4615. weightedMode: 0
  4616. inWeight: 0.33333334
  4617. outWeight: 0.33333334
  4618. - serializedVersion: 3
  4619. time: 2.4333334
  4620. value: 0.38431373
  4621. inSlope: 0
  4622. outSlope: 0
  4623. tangentMode: 136
  4624. weightedMode: 0
  4625. inWeight: 0.33333334
  4626. outWeight: 0.33333334
  4627. - serializedVersion: 3
  4628. time: 3.95
  4629. value: 0.38431373
  4630. inSlope: 0
  4631. outSlope: 0
  4632. tangentMode: 136
  4633. weightedMode: 0
  4634. inWeight: 0.33333334
  4635. outWeight: 0.33333334
  4636. m_PreInfinity: 2
  4637. m_PostInfinity: 2
  4638. m_RotationOrder: 4
  4639. attribute: material._Color.a
  4640. path: BasketballLine03
  4641. classID: 23
  4642. script: {fileID: 0}
  4643. - curve:
  4644. serializedVersion: 2
  4645. m_Curve:
  4646. - serializedVersion: 3
  4647. time: 2.1833334
  4648. value: 1.02
  4649. inSlope: 0
  4650. outSlope: 0
  4651. tangentMode: 136
  4652. weightedMode: 0
  4653. inWeight: 0.33333334
  4654. outWeight: 0.33333334
  4655. - serializedVersion: 3
  4656. time: 2.4333334
  4657. value: 0.01
  4658. inSlope: 0
  4659. outSlope: 0
  4660. tangentMode: 136
  4661. weightedMode: 0
  4662. inWeight: 0.33333334
  4663. outWeight: 0.33333334
  4664. - serializedVersion: 3
  4665. time: 3.95
  4666. value: 0.01
  4667. inSlope: 0
  4668. outSlope: 0
  4669. tangentMode: 136
  4670. weightedMode: 0
  4671. inWeight: 0.33333334
  4672. outWeight: 0.33333334
  4673. m_PreInfinity: 2
  4674. m_PostInfinity: 2
  4675. m_RotationOrder: 4
  4676. attribute: material._EmissionMap_ST.x
  4677. path: BasketballLine03
  4678. classID: 23
  4679. script: {fileID: 0}
  4680. - curve:
  4681. serializedVersion: 2
  4682. m_Curve:
  4683. - serializedVersion: 3
  4684. time: 2.1833334
  4685. value: 1
  4686. inSlope: 0
  4687. outSlope: 0
  4688. tangentMode: 136
  4689. weightedMode: 0
  4690. inWeight: 0.33333334
  4691. outWeight: 0.33333334
  4692. - serializedVersion: 3
  4693. time: 2.4333334
  4694. value: 1
  4695. inSlope: 0
  4696. outSlope: 0
  4697. tangentMode: 136
  4698. weightedMode: 0
  4699. inWeight: 0.33333334
  4700. outWeight: 0.33333334
  4701. - serializedVersion: 3
  4702. time: 3.95
  4703. value: 1
  4704. inSlope: 0
  4705. outSlope: 0
  4706. tangentMode: 136
  4707. weightedMode: 0
  4708. inWeight: 0.33333334
  4709. outWeight: 0.33333334
  4710. m_PreInfinity: 2
  4711. m_PostInfinity: 2
  4712. m_RotationOrder: 4
  4713. attribute: material._EmissionMap_ST.y
  4714. path: BasketballLine03
  4715. classID: 23
  4716. script: {fileID: 0}
  4717. - curve:
  4718. serializedVersion: 2
  4719. m_Curve:
  4720. - serializedVersion: 3
  4721. time: 2.1833334
  4722. value: 1
  4723. inSlope: 0
  4724. outSlope: 0
  4725. tangentMode: 136
  4726. weightedMode: 0
  4727. inWeight: 0.33333334
  4728. outWeight: 0.33333334
  4729. - serializedVersion: 3
  4730. time: 2.4333334
  4731. value: 1
  4732. inSlope: 0
  4733. outSlope: 0
  4734. tangentMode: 136
  4735. weightedMode: 0
  4736. inWeight: 0.33333334
  4737. outWeight: 0.33333334
  4738. - serializedVersion: 3
  4739. time: 3.95
  4740. value: 1
  4741. inSlope: 0
  4742. outSlope: 0
  4743. tangentMode: 136
  4744. weightedMode: 0
  4745. inWeight: 0.33333334
  4746. outWeight: 0.33333334
  4747. m_PreInfinity: 2
  4748. m_PostInfinity: 2
  4749. m_RotationOrder: 4
  4750. attribute: material._EmissionMap_ST.z
  4751. path: BasketballLine03
  4752. classID: 23
  4753. script: {fileID: 0}
  4754. - curve:
  4755. serializedVersion: 2
  4756. m_Curve:
  4757. - serializedVersion: 3
  4758. time: 2.1833334
  4759. value: 0
  4760. inSlope: 0
  4761. outSlope: 0
  4762. tangentMode: 136
  4763. weightedMode: 0
  4764. inWeight: 0.33333334
  4765. outWeight: 0.33333334
  4766. - serializedVersion: 3
  4767. time: 2.4333334
  4768. value: 0
  4769. inSlope: 0
  4770. outSlope: 0
  4771. tangentMode: 136
  4772. weightedMode: 0
  4773. inWeight: 0.33333334
  4774. outWeight: 0.33333334
  4775. - serializedVersion: 3
  4776. time: 3.95
  4777. value: 0
  4778. inSlope: 0
  4779. outSlope: 0
  4780. tangentMode: 136
  4781. weightedMode: 0
  4782. inWeight: 0.33333334
  4783. outWeight: 0.33333334
  4784. m_PreInfinity: 2
  4785. m_PostInfinity: 2
  4786. m_RotationOrder: 4
  4787. attribute: material._EmissionMap_ST.w
  4788. path: BasketballLine03
  4789. classID: 23
  4790. script: {fileID: 0}
  4791. - curve:
  4792. serializedVersion: 2
  4793. m_Curve:
  4794. - serializedVersion: 3
  4795. time: 2.1833334
  4796. value: 1.02
  4797. inSlope: 0
  4798. outSlope: 0
  4799. tangentMode: 136
  4800. weightedMode: 0
  4801. inWeight: 0.33333334
  4802. outWeight: 0.33333334
  4803. - serializedVersion: 3
  4804. time: 2.4333334
  4805. value: 0.01
  4806. inSlope: 0
  4807. outSlope: 0
  4808. tangentMode: 136
  4809. weightedMode: 0
  4810. inWeight: 0.33333334
  4811. outWeight: 0.33333334
  4812. - serializedVersion: 3
  4813. time: 3.95
  4814. value: 0.01
  4815. inSlope: 0
  4816. outSlope: 0
  4817. tangentMode: 136
  4818. weightedMode: 0
  4819. inWeight: 0.33333334
  4820. outWeight: 0.33333334
  4821. m_PreInfinity: 2
  4822. m_PostInfinity: 2
  4823. m_RotationOrder: 4
  4824. attribute: material._MainTex_ST.x
  4825. path: BasketballLine03
  4826. classID: 23
  4827. script: {fileID: 0}
  4828. - curve:
  4829. serializedVersion: 2
  4830. m_Curve:
  4831. - serializedVersion: 3
  4832. time: 2.1833334
  4833. value: 1
  4834. inSlope: 0
  4835. outSlope: 0
  4836. tangentMode: 136
  4837. weightedMode: 0
  4838. inWeight: 0.33333334
  4839. outWeight: 0.33333334
  4840. - serializedVersion: 3
  4841. time: 2.4333334
  4842. value: 1
  4843. inSlope: 0
  4844. outSlope: 0
  4845. tangentMode: 136
  4846. weightedMode: 0
  4847. inWeight: 0.33333334
  4848. outWeight: 0.33333334
  4849. - serializedVersion: 3
  4850. time: 3.95
  4851. value: 1
  4852. inSlope: 0
  4853. outSlope: 0
  4854. tangentMode: 136
  4855. weightedMode: 0
  4856. inWeight: 0.33333334
  4857. outWeight: 0.33333334
  4858. m_PreInfinity: 2
  4859. m_PostInfinity: 2
  4860. m_RotationOrder: 4
  4861. attribute: material._MainTex_ST.y
  4862. path: BasketballLine03
  4863. classID: 23
  4864. script: {fileID: 0}
  4865. - curve:
  4866. serializedVersion: 2
  4867. m_Curve:
  4868. - serializedVersion: 3
  4869. time: 2.1833334
  4870. value: 1
  4871. inSlope: 0
  4872. outSlope: 0
  4873. tangentMode: 136
  4874. weightedMode: 0
  4875. inWeight: 0.33333334
  4876. outWeight: 0.33333334
  4877. - serializedVersion: 3
  4878. time: 2.4333334
  4879. value: 1
  4880. inSlope: 0
  4881. outSlope: 0
  4882. tangentMode: 136
  4883. weightedMode: 0
  4884. inWeight: 0.33333334
  4885. outWeight: 0.33333334
  4886. - serializedVersion: 3
  4887. time: 3.95
  4888. value: 1
  4889. inSlope: 0
  4890. outSlope: 0
  4891. tangentMode: 136
  4892. weightedMode: 0
  4893. inWeight: 0.33333334
  4894. outWeight: 0.33333334
  4895. m_PreInfinity: 2
  4896. m_PostInfinity: 2
  4897. m_RotationOrder: 4
  4898. attribute: material._MainTex_ST.z
  4899. path: BasketballLine03
  4900. classID: 23
  4901. script: {fileID: 0}
  4902. - curve:
  4903. serializedVersion: 2
  4904. m_Curve:
  4905. - serializedVersion: 3
  4906. time: 2.1833334
  4907. value: 0
  4908. inSlope: 0
  4909. outSlope: 0
  4910. tangentMode: 136
  4911. weightedMode: 0
  4912. inWeight: 0.33333334
  4913. outWeight: 0.33333334
  4914. - serializedVersion: 3
  4915. time: 2.4333334
  4916. value: 0
  4917. inSlope: 0
  4918. outSlope: 0
  4919. tangentMode: 136
  4920. weightedMode: 0
  4921. inWeight: 0.33333334
  4922. outWeight: 0.33333334
  4923. - serializedVersion: 3
  4924. time: 3.95
  4925. value: 0
  4926. inSlope: 0
  4927. outSlope: 0
  4928. tangentMode: 136
  4929. weightedMode: 0
  4930. inWeight: 0.33333334
  4931. outWeight: 0.33333334
  4932. m_PreInfinity: 2
  4933. m_PostInfinity: 2
  4934. m_RotationOrder: 4
  4935. attribute: material._MainTex_ST.w
  4936. path: BasketballLine03
  4937. classID: 23
  4938. script: {fileID: 0}
  4939. - curve:
  4940. serializedVersion: 2
  4941. m_Curve:
  4942. - serializedVersion: 3
  4943. time: 0.95
  4944. value: 1
  4945. inSlope: Infinity
  4946. outSlope: Infinity
  4947. tangentMode: 103
  4948. weightedMode: 0
  4949. inWeight: 0
  4950. outWeight: 0
  4951. - serializedVersion: 3
  4952. time: 2.3333333
  4953. value: 0
  4954. inSlope: Infinity
  4955. outSlope: Infinity
  4956. tangentMode: 103
  4957. weightedMode: 0
  4958. inWeight: 0
  4959. outWeight: 0
  4960. - serializedVersion: 3
  4961. time: 3.95
  4962. value: 0
  4963. inSlope: Infinity
  4964. outSlope: Infinity
  4965. tangentMode: 103
  4966. weightedMode: 0
  4967. inWeight: 0
  4968. outWeight: 0
  4969. m_PreInfinity: 2
  4970. m_PostInfinity: 2
  4971. m_RotationOrder: 4
  4972. attribute: m_IsActive
  4973. path: BasketballRojie
  4974. classID: 1
  4975. script: {fileID: 0}
  4976. - curve:
  4977. serializedVersion: 2
  4978. m_Curve:
  4979. - serializedVersion: 3
  4980. time: 0.95
  4981. value: 1
  4982. inSlope: 0
  4983. outSlope: 0
  4984. tangentMode: 136
  4985. weightedMode: 0
  4986. inWeight: 0.33333334
  4987. outWeight: 0.33333334
  4988. - serializedVersion: 3
  4989. time: 1.3166667
  4990. value: 1
  4991. inSlope: 0
  4992. outSlope: 0
  4993. tangentMode: 136
  4994. weightedMode: 0
  4995. inWeight: 0.33333334
  4996. outWeight: 0.33333334
  4997. - serializedVersion: 3
  4998. time: 2.3333333
  4999. value: 0
  5000. inSlope: 0
  5001. outSlope: 0
  5002. tangentMode: 136
  5003. weightedMode: 0
  5004. inWeight: 0.33333334
  5005. outWeight: 0.33333334
  5006. - serializedVersion: 3
  5007. time: 3.95
  5008. value: 0
  5009. inSlope: 0
  5010. outSlope: 0
  5011. tangentMode: 136
  5012. weightedMode: 0
  5013. inWeight: 0.33333334
  5014. outWeight: 0.33333334
  5015. m_PreInfinity: 2
  5016. m_PostInfinity: 2
  5017. m_RotationOrder: 4
  5018. attribute: material._Amount
  5019. path: BasketballRojie
  5020. classID: 23
  5021. script: {fileID: 0}
  5022. - curve:
  5023. serializedVersion: 2
  5024. m_Curve:
  5025. - serializedVersion: 3
  5026. time: 0
  5027. value: 0
  5028. inSlope: Infinity
  5029. outSlope: Infinity
  5030. tangentMode: 103
  5031. weightedMode: 0
  5032. inWeight: 0
  5033. outWeight: 0
  5034. - serializedVersion: 3
  5035. time: 0.21666667
  5036. value: 1
  5037. inSlope: Infinity
  5038. outSlope: Infinity
  5039. tangentMode: 103
  5040. weightedMode: 0
  5041. inWeight: 0
  5042. outWeight: 0
  5043. - serializedVersion: 3
  5044. time: 3.95
  5045. value: 1
  5046. inSlope: Infinity
  5047. outSlope: Infinity
  5048. tangentMode: 103
  5049. weightedMode: 0
  5050. inWeight: 0
  5051. outWeight: 0
  5052. m_PreInfinity: 2
  5053. m_PostInfinity: 2
  5054. m_RotationOrder: 4
  5055. attribute: m_IsActive
  5056. path: CC
  5057. classID: 1
  5058. script: {fileID: 0}
  5059. - curve:
  5060. serializedVersion: 2
  5061. m_Curve:
  5062. - serializedVersion: 3
  5063. time: 0
  5064. value: 0
  5065. inSlope: Infinity
  5066. outSlope: Infinity
  5067. tangentMode: 103
  5068. weightedMode: 0
  5069. inWeight: 0
  5070. outWeight: 0
  5071. - serializedVersion: 3
  5072. time: 0.8666667
  5073. value: 1
  5074. inSlope: Infinity
  5075. outSlope: Infinity
  5076. tangentMode: 103
  5077. weightedMode: 0
  5078. inWeight: 0
  5079. outWeight: 0
  5080. m_PreInfinity: 2
  5081. m_PostInfinity: 2
  5082. m_RotationOrder: 4
  5083. attribute: m_IsActive
  5084. path: GameObject
  5085. classID: 1
  5086. script: {fileID: 0}
  5087. - curve:
  5088. serializedVersion: 2
  5089. m_Curve:
  5090. - serializedVersion: 3
  5091. time: 1
  5092. value: 0
  5093. inSlope: 0
  5094. outSlope: 0
  5095. tangentMode: 136
  5096. weightedMode: 0
  5097. inWeight: 0.33333334
  5098. outWeight: 0.33333334
  5099. - serializedVersion: 3
  5100. time: 2.0833333
  5101. value: 1
  5102. inSlope: 0
  5103. outSlope: 0
  5104. tangentMode: 136
  5105. weightedMode: 0
  5106. inWeight: 0.33333334
  5107. outWeight: 0.33333334
  5108. m_PreInfinity: 2
  5109. m_PostInfinity: 2
  5110. m_RotationOrder: 4
  5111. attribute: material._Color.r
  5112. path: GameObject/lanqiu_fushitietu/Anim_001/ball
  5113. classID: 23
  5114. script: {fileID: 0}
  5115. - curve:
  5116. serializedVersion: 2
  5117. m_Curve:
  5118. - serializedVersion: 3
  5119. time: 1
  5120. value: 0
  5121. inSlope: 0
  5122. outSlope: 0
  5123. tangentMode: 136
  5124. weightedMode: 0
  5125. inWeight: 0.33333334
  5126. outWeight: 0.33333334
  5127. - serializedVersion: 3
  5128. time: 2.0833333
  5129. value: 1
  5130. inSlope: 0
  5131. outSlope: 0
  5132. tangentMode: 136
  5133. weightedMode: 0
  5134. inWeight: 0.33333334
  5135. outWeight: 0.33333334
  5136. m_PreInfinity: 2
  5137. m_PostInfinity: 2
  5138. m_RotationOrder: 4
  5139. attribute: material._Color.g
  5140. path: GameObject/lanqiu_fushitietu/Anim_001/ball
  5141. classID: 23
  5142. script: {fileID: 0}
  5143. - curve:
  5144. serializedVersion: 2
  5145. m_Curve:
  5146. - serializedVersion: 3
  5147. time: 1
  5148. value: 0
  5149. inSlope: 0
  5150. outSlope: 0
  5151. tangentMode: 136
  5152. weightedMode: 0
  5153. inWeight: 0.33333334
  5154. outWeight: 0.33333334
  5155. - serializedVersion: 3
  5156. time: 2.0833333
  5157. value: 1
  5158. inSlope: 0
  5159. outSlope: 0
  5160. tangentMode: 136
  5161. weightedMode: 0
  5162. inWeight: 0.33333334
  5163. outWeight: 0.33333334
  5164. m_PreInfinity: 2
  5165. m_PostInfinity: 2
  5166. m_RotationOrder: 4
  5167. attribute: material._Color.b
  5168. path: GameObject/lanqiu_fushitietu/Anim_001/ball
  5169. classID: 23
  5170. script: {fileID: 0}
  5171. - curve:
  5172. serializedVersion: 2
  5173. m_Curve:
  5174. - serializedVersion: 3
  5175. time: 1
  5176. value: 1
  5177. inSlope: 0
  5178. outSlope: 0
  5179. tangentMode: 136
  5180. weightedMode: 0
  5181. inWeight: 0.33333334
  5182. outWeight: 0.33333334
  5183. - serializedVersion: 3
  5184. time: 2.0833333
  5185. value: 1
  5186. inSlope: 0
  5187. outSlope: 0
  5188. tangentMode: 136
  5189. weightedMode: 0
  5190. inWeight: 0.33333334
  5191. outWeight: 0.33333334
  5192. m_PreInfinity: 2
  5193. m_PostInfinity: 2
  5194. m_RotationOrder: 4
  5195. attribute: material._Color.a
  5196. path: GameObject/lanqiu_fushitietu/Anim_001/ball
  5197. classID: 23
  5198. script: {fileID: 0}
  5199. - curve:
  5200. serializedVersion: 2
  5201. m_Curve:
  5202. - serializedVersion: 3
  5203. time: 1
  5204. value: 0
  5205. inSlope: 0
  5206. outSlope: 0
  5207. tangentMode: 136
  5208. weightedMode: 0
  5209. inWeight: 0.33333334
  5210. outWeight: 0.33333334
  5211. - serializedVersion: 3
  5212. time: 2.0833333
  5213. value: 1
  5214. inSlope: 0
  5215. outSlope: 0
  5216. tangentMode: 136
  5217. weightedMode: 0
  5218. inWeight: 0.33333334
  5219. outWeight: 0.33333334
  5220. m_PreInfinity: 2
  5221. m_PostInfinity: 2
  5222. m_RotationOrder: 4
  5223. attribute: material._Color.r
  5224. path: GameObject/lanqiu_fushitietu/Anim_002/WBP
  5225. classID: 137
  5226. script: {fileID: 0}
  5227. - curve:
  5228. serializedVersion: 2
  5229. m_Curve:
  5230. - serializedVersion: 3
  5231. time: 1
  5232. value: 0
  5233. inSlope: 0
  5234. outSlope: 0
  5235. tangentMode: 136
  5236. weightedMode: 0
  5237. inWeight: 0.33333334
  5238. outWeight: 0.33333334
  5239. - serializedVersion: 3
  5240. time: 2.0833333
  5241. value: 1
  5242. inSlope: 0
  5243. outSlope: 0
  5244. tangentMode: 136
  5245. weightedMode: 0
  5246. inWeight: 0.33333334
  5247. outWeight: 0.33333334
  5248. m_PreInfinity: 2
  5249. m_PostInfinity: 2
  5250. m_RotationOrder: 4
  5251. attribute: material._Color.g
  5252. path: GameObject/lanqiu_fushitietu/Anim_002/WBP
  5253. classID: 137
  5254. script: {fileID: 0}
  5255. - curve:
  5256. serializedVersion: 2
  5257. m_Curve:
  5258. - serializedVersion: 3
  5259. time: 1
  5260. value: 0
  5261. inSlope: 0
  5262. outSlope: 0
  5263. tangentMode: 136
  5264. weightedMode: 0
  5265. inWeight: 0.33333334
  5266. outWeight: 0.33333334
  5267. - serializedVersion: 3
  5268. time: 2.0833333
  5269. value: 1
  5270. inSlope: 0
  5271. outSlope: 0
  5272. tangentMode: 136
  5273. weightedMode: 0
  5274. inWeight: 0.33333334
  5275. outWeight: 0.33333334
  5276. m_PreInfinity: 2
  5277. m_PostInfinity: 2
  5278. m_RotationOrder: 4
  5279. attribute: material._Color.b
  5280. path: GameObject/lanqiu_fushitietu/Anim_002/WBP
  5281. classID: 137
  5282. script: {fileID: 0}
  5283. - curve:
  5284. serializedVersion: 2
  5285. m_Curve:
  5286. - serializedVersion: 3
  5287. time: 1
  5288. value: 1
  5289. inSlope: 0
  5290. outSlope: 0
  5291. tangentMode: 136
  5292. weightedMode: 0
  5293. inWeight: 0.33333334
  5294. outWeight: 0.33333334
  5295. - serializedVersion: 3
  5296. time: 2.0833333
  5297. value: 1
  5298. inSlope: 0
  5299. outSlope: 0
  5300. tangentMode: 136
  5301. weightedMode: 0
  5302. inWeight: 0.33333334
  5303. outWeight: 0.33333334
  5304. m_PreInfinity: 2
  5305. m_PostInfinity: 2
  5306. m_RotationOrder: 4
  5307. attribute: material._Color.a
  5308. path: GameObject/lanqiu_fushitietu/Anim_002/WBP
  5309. classID: 137
  5310. script: {fileID: 0}
  5311. - curve:
  5312. serializedVersion: 2
  5313. m_Curve:
  5314. - serializedVersion: 3
  5315. time: 1
  5316. value: 0
  5317. inSlope: 0
  5318. outSlope: 0
  5319. tangentMode: 136
  5320. weightedMode: 0
  5321. inWeight: 0.33333334
  5322. outWeight: 0.33333334
  5323. - serializedVersion: 3
  5324. time: 2.0833333
  5325. value: 1
  5326. inSlope: 0
  5327. outSlope: 0
  5328. tangentMode: 136
  5329. weightedMode: 0
  5330. inWeight: 0.33333334
  5331. outWeight: 0.33333334
  5332. m_PreInfinity: 2
  5333. m_PostInfinity: 2
  5334. m_RotationOrder: 4
  5335. attribute: material._Color.r
  5336. path: GameObject/lanqiu_fushitietu/Anim_003/defense:WBP
  5337. classID: 137
  5338. script: {fileID: 0}
  5339. - curve:
  5340. serializedVersion: 2
  5341. m_Curve:
  5342. - serializedVersion: 3
  5343. time: 1
  5344. value: 0
  5345. inSlope: 0
  5346. outSlope: 0
  5347. tangentMode: 136
  5348. weightedMode: 0
  5349. inWeight: 0.33333334
  5350. outWeight: 0.33333334
  5351. - serializedVersion: 3
  5352. time: 2.0833333
  5353. value: 1
  5354. inSlope: 0
  5355. outSlope: 0
  5356. tangentMode: 136
  5357. weightedMode: 0
  5358. inWeight: 0.33333334
  5359. outWeight: 0.33333334
  5360. m_PreInfinity: 2
  5361. m_PostInfinity: 2
  5362. m_RotationOrder: 4
  5363. attribute: material._Color.g
  5364. path: GameObject/lanqiu_fushitietu/Anim_003/defense:WBP
  5365. classID: 137
  5366. script: {fileID: 0}
  5367. - curve:
  5368. serializedVersion: 2
  5369. m_Curve:
  5370. - serializedVersion: 3
  5371. time: 1
  5372. value: 0
  5373. inSlope: 0
  5374. outSlope: 0
  5375. tangentMode: 136
  5376. weightedMode: 0
  5377. inWeight: 0.33333334
  5378. outWeight: 0.33333334
  5379. - serializedVersion: 3
  5380. time: 2.0833333
  5381. value: 1
  5382. inSlope: 0
  5383. outSlope: 0
  5384. tangentMode: 136
  5385. weightedMode: 0
  5386. inWeight: 0.33333334
  5387. outWeight: 0.33333334
  5388. m_PreInfinity: 2
  5389. m_PostInfinity: 2
  5390. m_RotationOrder: 4
  5391. attribute: material._Color.b
  5392. path: GameObject/lanqiu_fushitietu/Anim_003/defense:WBP
  5393. classID: 137
  5394. script: {fileID: 0}
  5395. - curve:
  5396. serializedVersion: 2
  5397. m_Curve:
  5398. - serializedVersion: 3
  5399. time: 1
  5400. value: 1
  5401. inSlope: 0
  5402. outSlope: 0
  5403. tangentMode: 136
  5404. weightedMode: 0
  5405. inWeight: 0.33333334
  5406. outWeight: 0.33333334
  5407. - serializedVersion: 3
  5408. time: 2.0833333
  5409. value: 1
  5410. inSlope: 0
  5411. outSlope: 0
  5412. tangentMode: 136
  5413. weightedMode: 0
  5414. inWeight: 0.33333334
  5415. outWeight: 0.33333334
  5416. m_PreInfinity: 2
  5417. m_PostInfinity: 2
  5418. m_RotationOrder: 4
  5419. attribute: material._Color.a
  5420. path: GameObject/lanqiu_fushitietu/Anim_003/defense:WBP
  5421. classID: 137
  5422. script: {fileID: 0}
  5423. - curve:
  5424. serializedVersion: 2
  5425. m_Curve:
  5426. - serializedVersion: 3
  5427. time: 0.96666664
  5428. value: 0
  5429. inSlope: 0
  5430. outSlope: 0
  5431. tangentMode: 136
  5432. weightedMode: 0
  5433. inWeight: 0.33333334
  5434. outWeight: 0.33333334
  5435. - serializedVersion: 3
  5436. time: 2.1166666
  5437. value: 1
  5438. inSlope: 0
  5439. outSlope: 0
  5440. tangentMode: 136
  5441. weightedMode: 0
  5442. inWeight: 0.33333334
  5443. outWeight: 0.33333334
  5444. m_PreInfinity: 2
  5445. m_PostInfinity: 2
  5446. m_RotationOrder: 4
  5447. attribute: material._Color.r
  5448. path: GameObject/lanqiu_fushitietu/Anim_003s/WBP
  5449. classID: 137
  5450. script: {fileID: 0}
  5451. - curve:
  5452. serializedVersion: 2
  5453. m_Curve:
  5454. - serializedVersion: 3
  5455. time: 0.96666664
  5456. value: 0
  5457. inSlope: 0
  5458. outSlope: 0
  5459. tangentMode: 136
  5460. weightedMode: 0
  5461. inWeight: 0.33333334
  5462. outWeight: 0.33333334
  5463. - serializedVersion: 3
  5464. time: 2.1166666
  5465. value: 1
  5466. inSlope: 0
  5467. outSlope: 0
  5468. tangentMode: 136
  5469. weightedMode: 0
  5470. inWeight: 0.33333334
  5471. outWeight: 0.33333334
  5472. m_PreInfinity: 2
  5473. m_PostInfinity: 2
  5474. m_RotationOrder: 4
  5475. attribute: material._Color.g
  5476. path: GameObject/lanqiu_fushitietu/Anim_003s/WBP
  5477. classID: 137
  5478. script: {fileID: 0}
  5479. - curve:
  5480. serializedVersion: 2
  5481. m_Curve:
  5482. - serializedVersion: 3
  5483. time: 0.96666664
  5484. value: 0
  5485. inSlope: 0
  5486. outSlope: 0
  5487. tangentMode: 136
  5488. weightedMode: 0
  5489. inWeight: 0.33333334
  5490. outWeight: 0.33333334
  5491. - serializedVersion: 3
  5492. time: 2.1166666
  5493. value: 1
  5494. inSlope: 0
  5495. outSlope: 0
  5496. tangentMode: 136
  5497. weightedMode: 0
  5498. inWeight: 0.33333334
  5499. outWeight: 0.33333334
  5500. m_PreInfinity: 2
  5501. m_PostInfinity: 2
  5502. m_RotationOrder: 4
  5503. attribute: material._Color.b
  5504. path: GameObject/lanqiu_fushitietu/Anim_003s/WBP
  5505. classID: 137
  5506. script: {fileID: 0}
  5507. - curve:
  5508. serializedVersion: 2
  5509. m_Curve:
  5510. - serializedVersion: 3
  5511. time: 0.96666664
  5512. value: 1
  5513. inSlope: 0
  5514. outSlope: 0
  5515. tangentMode: 136
  5516. weightedMode: 0
  5517. inWeight: 0.33333334
  5518. outWeight: 0.33333334
  5519. - serializedVersion: 3
  5520. time: 2.1166666
  5521. value: 1
  5522. inSlope: 0
  5523. outSlope: 0
  5524. tangentMode: 136
  5525. weightedMode: 0
  5526. inWeight: 0.33333334
  5527. outWeight: 0.33333334
  5528. m_PreInfinity: 2
  5529. m_PostInfinity: 2
  5530. m_RotationOrder: 4
  5531. attribute: material._Color.a
  5532. path: GameObject/lanqiu_fushitietu/Anim_003s/WBP
  5533. classID: 137
  5534. script: {fileID: 0}
  5535. - curve:
  5536. serializedVersion: 2
  5537. m_Curve:
  5538. - serializedVersion: 3
  5539. time: 0.96666664
  5540. value: 0
  5541. inSlope: 0
  5542. outSlope: 0
  5543. tangentMode: 136
  5544. weightedMode: 0
  5545. inWeight: 0.33333334
  5546. outWeight: 0.33333334
  5547. - serializedVersion: 3
  5548. time: 2.35
  5549. value: 0.9632353
  5550. inSlope: 0
  5551. outSlope: 0
  5552. tangentMode: 136
  5553. weightedMode: 0
  5554. inWeight: 0.33333334
  5555. outWeight: 0.33333334
  5556. m_PreInfinity: 2
  5557. m_PostInfinity: 2
  5558. m_RotationOrder: 4
  5559. attribute: material._Color.r
  5560. path: GameObject/man-basketball-player1/Geometry/man-basketball-player
  5561. classID: 137
  5562. script: {fileID: 0}
  5563. - curve:
  5564. serializedVersion: 2
  5565. m_Curve:
  5566. - serializedVersion: 3
  5567. time: 0.96666664
  5568. value: 0
  5569. inSlope: 0
  5570. outSlope: 0
  5571. tangentMode: 136
  5572. weightedMode: 0
  5573. inWeight: 0.33333334
  5574. outWeight: 0.33333334
  5575. - serializedVersion: 3
  5576. time: 2.35
  5577. value: 0.9632353
  5578. inSlope: 0
  5579. outSlope: 0
  5580. tangentMode: 136
  5581. weightedMode: 0
  5582. inWeight: 0.33333334
  5583. outWeight: 0.33333334
  5584. m_PreInfinity: 2
  5585. m_PostInfinity: 2
  5586. m_RotationOrder: 4
  5587. attribute: material._Color.g
  5588. path: GameObject/man-basketball-player1/Geometry/man-basketball-player
  5589. classID: 137
  5590. script: {fileID: 0}
  5591. - curve:
  5592. serializedVersion: 2
  5593. m_Curve:
  5594. - serializedVersion: 3
  5595. time: 0.96666664
  5596. value: 0
  5597. inSlope: 0
  5598. outSlope: 0
  5599. tangentMode: 136
  5600. weightedMode: 0
  5601. inWeight: 0.33333334
  5602. outWeight: 0.33333334
  5603. - serializedVersion: 3
  5604. time: 2.35
  5605. value: 0.9632353
  5606. inSlope: 0
  5607. outSlope: 0
  5608. tangentMode: 136
  5609. weightedMode: 0
  5610. inWeight: 0.33333334
  5611. outWeight: 0.33333334
  5612. m_PreInfinity: 2
  5613. m_PostInfinity: 2
  5614. m_RotationOrder: 4
  5615. attribute: material._Color.b
  5616. path: GameObject/man-basketball-player1/Geometry/man-basketball-player
  5617. classID: 137
  5618. script: {fileID: 0}
  5619. - curve:
  5620. serializedVersion: 2
  5621. m_Curve:
  5622. - serializedVersion: 3
  5623. time: 0.96666664
  5624. value: 1
  5625. inSlope: 0
  5626. outSlope: 0
  5627. tangentMode: 136
  5628. weightedMode: 0
  5629. inWeight: 0.33333334
  5630. outWeight: 0.33333334
  5631. - serializedVersion: 3
  5632. time: 2.35
  5633. value: 1
  5634. inSlope: 0
  5635. outSlope: 0
  5636. tangentMode: 136
  5637. weightedMode: 0
  5638. inWeight: 0.33333334
  5639. outWeight: 0.33333334
  5640. m_PreInfinity: 2
  5641. m_PostInfinity: 2
  5642. m_RotationOrder: 4
  5643. attribute: material._Color.a
  5644. path: GameObject/man-basketball-player1/Geometry/man-basketball-player
  5645. classID: 137
  5646. script: {fileID: 0}
  5647. - curve:
  5648. serializedVersion: 2
  5649. m_Curve:
  5650. - serializedVersion: 3
  5651. time: 0.96666664
  5652. value: 0
  5653. inSlope: 0
  5654. outSlope: 0
  5655. tangentMode: 136
  5656. weightedMode: 0
  5657. inWeight: 0.33333334
  5658. outWeight: 0.33333334
  5659. - serializedVersion: 3
  5660. time: 2.35
  5661. value: 0.5215687
  5662. inSlope: 0
  5663. outSlope: 0
  5664. tangentMode: 136
  5665. weightedMode: 0
  5666. inWeight: 0.33333334
  5667. outWeight: 0.33333334
  5668. m_PreInfinity: 2
  5669. m_PostInfinity: 2
  5670. m_RotationOrder: 4
  5671. attribute: material._Color.r
  5672. path: GameObject/man-basketball-player1/Sphere/1223
  5673. classID: 23
  5674. script: {fileID: 0}
  5675. - curve:
  5676. serializedVersion: 2
  5677. m_Curve:
  5678. - serializedVersion: 3
  5679. time: 0.96666664
  5680. value: 0
  5681. inSlope: 0
  5682. outSlope: 0
  5683. tangentMode: 136
  5684. weightedMode: 0
  5685. inWeight: 0.33333334
  5686. outWeight: 0.33333334
  5687. - serializedVersion: 3
  5688. time: 2.35
  5689. value: 0.172549
  5690. inSlope: 0
  5691. outSlope: 0
  5692. tangentMode: 136
  5693. weightedMode: 0
  5694. inWeight: 0.33333334
  5695. outWeight: 0.33333334
  5696. m_PreInfinity: 2
  5697. m_PostInfinity: 2
  5698. m_RotationOrder: 4
  5699. attribute: material._Color.g
  5700. path: GameObject/man-basketball-player1/Sphere/1223
  5701. classID: 23
  5702. script: {fileID: 0}
  5703. - curve:
  5704. serializedVersion: 2
  5705. m_Curve:
  5706. - serializedVersion: 3
  5707. time: 0.96666664
  5708. value: 0
  5709. inSlope: 0
  5710. outSlope: 0
  5711. tangentMode: 136
  5712. weightedMode: 0
  5713. inWeight: 0.33333334
  5714. outWeight: 0.33333334
  5715. - serializedVersion: 3
  5716. time: 2.35
  5717. value: 0
  5718. inSlope: 0
  5719. outSlope: 0
  5720. tangentMode: 136
  5721. weightedMode: 0
  5722. inWeight: 0.33333334
  5723. outWeight: 0.33333334
  5724. m_PreInfinity: 2
  5725. m_PostInfinity: 2
  5726. m_RotationOrder: 4
  5727. attribute: material._Color.b
  5728. path: GameObject/man-basketball-player1/Sphere/1223
  5729. classID: 23
  5730. script: {fileID: 0}
  5731. - curve:
  5732. serializedVersion: 2
  5733. m_Curve:
  5734. - serializedVersion: 3
  5735. time: 0.96666664
  5736. value: 1
  5737. inSlope: 0
  5738. outSlope: 0
  5739. tangentMode: 136
  5740. weightedMode: 0
  5741. inWeight: 0.33333334
  5742. outWeight: 0.33333334
  5743. - serializedVersion: 3
  5744. time: 2.35
  5745. value: 1
  5746. inSlope: 0
  5747. outSlope: 0
  5748. tangentMode: 136
  5749. weightedMode: 0
  5750. inWeight: 0.33333334
  5751. outWeight: 0.33333334
  5752. m_PreInfinity: 2
  5753. m_PostInfinity: 2
  5754. m_RotationOrder: 4
  5755. attribute: material._Color.a
  5756. path: GameObject/man-basketball-player1/Sphere/1223
  5757. classID: 23
  5758. script: {fileID: 0}
  5759. - curve:
  5760. serializedVersion: 2
  5761. m_Curve:
  5762. - serializedVersion: 3
  5763. time: 0.96666664
  5764. value: 0
  5765. inSlope: 0
  5766. outSlope: 0
  5767. tangentMode: 136
  5768. weightedMode: 0
  5769. inWeight: 0.33333334
  5770. outWeight: 0.33333334
  5771. - serializedVersion: 3
  5772. time: 2.35
  5773. value: 0.1603774
  5774. inSlope: 0
  5775. outSlope: 0
  5776. tangentMode: 136
  5777. weightedMode: 0
  5778. inWeight: 0.33333334
  5779. outWeight: 0.33333334
  5780. m_PreInfinity: 2
  5781. m_PostInfinity: 2
  5782. m_RotationOrder: 4
  5783. attribute: material._EmissionColor.r
  5784. path: GameObject/man-basketball-player1/Sphere/1223
  5785. classID: 23
  5786. script: {fileID: 0}
  5787. - curve:
  5788. serializedVersion: 2
  5789. m_Curve:
  5790. - serializedVersion: 3
  5791. time: 0.96666664
  5792. value: 0
  5793. inSlope: 0
  5794. outSlope: 0
  5795. tangentMode: 136
  5796. weightedMode: 0
  5797. inWeight: 0.33333334
  5798. outWeight: 0.33333334
  5799. - serializedVersion: 3
  5800. time: 2.35
  5801. value: 0.05854964
  5802. inSlope: 0
  5803. outSlope: 0
  5804. tangentMode: 136
  5805. weightedMode: 0
  5806. inWeight: 0.33333334
  5807. outWeight: 0.33333334
  5808. m_PreInfinity: 2
  5809. m_PostInfinity: 2
  5810. m_RotationOrder: 4
  5811. attribute: material._EmissionColor.g
  5812. path: GameObject/man-basketball-player1/Sphere/1223
  5813. classID: 23
  5814. script: {fileID: 0}
  5815. - curve:
  5816. serializedVersion: 2
  5817. m_Curve:
  5818. - serializedVersion: 3
  5819. time: 0.96666664
  5820. value: 0
  5821. inSlope: 0
  5822. outSlope: 0
  5823. tangentMode: 136
  5824. weightedMode: 0
  5825. inWeight: 0.33333334
  5826. outWeight: 0.33333334
  5827. - serializedVersion: 3
  5828. time: 2.35
  5829. value: 0.04765932
  5830. inSlope: 0
  5831. outSlope: 0
  5832. tangentMode: 136
  5833. weightedMode: 0
  5834. inWeight: 0.33333334
  5835. outWeight: 0.33333334
  5836. m_PreInfinity: 2
  5837. m_PostInfinity: 2
  5838. m_RotationOrder: 4
  5839. attribute: material._EmissionColor.b
  5840. path: GameObject/man-basketball-player1/Sphere/1223
  5841. classID: 23
  5842. script: {fileID: 0}
  5843. - curve:
  5844. serializedVersion: 2
  5845. m_Curve:
  5846. - serializedVersion: 3
  5847. time: 0.96666664
  5848. value: 0
  5849. inSlope: 0
  5850. outSlope: 0
  5851. tangentMode: 136
  5852. weightedMode: 0
  5853. inWeight: 0.33333334
  5854. outWeight: 0.33333334
  5855. - serializedVersion: 3
  5856. time: 2.35
  5857. value: 0
  5858. inSlope: 0
  5859. outSlope: 0
  5860. tangentMode: 136
  5861. weightedMode: 0
  5862. inWeight: 0.33333334
  5863. outWeight: 0.33333334
  5864. m_PreInfinity: 2
  5865. m_PostInfinity: 2
  5866. m_RotationOrder: 4
  5867. attribute: material._EmissionColor.a
  5868. path: GameObject/man-basketball-player1/Sphere/1223
  5869. classID: 23
  5870. script: {fileID: 0}
  5871. - curve:
  5872. serializedVersion: 2
  5873. m_Curve:
  5874. - serializedVersion: 3
  5875. time: 0
  5876. value: -0.06
  5877. inSlope: 0
  5878. outSlope: 0
  5879. tangentMode: 136
  5880. weightedMode: 0
  5881. inWeight: 0.33333334
  5882. outWeight: 0.33333334
  5883. - serializedVersion: 3
  5884. time: 0.5833333
  5885. value: 1
  5886. inSlope: 0
  5887. outSlope: 0
  5888. tangentMode: 136
  5889. weightedMode: 0
  5890. inWeight: 0.33333334
  5891. outWeight: 0.33333334
  5892. m_PreInfinity: 2
  5893. m_PostInfinity: 2
  5894. m_RotationOrder: 4
  5895. attribute: material._Float1
  5896. path: lanqiukang
  5897. classID: 23
  5898. script: {fileID: 0}
  5899. - curve:
  5900. serializedVersion: 2
  5901. m_Curve:
  5902. - serializedVersion: 3
  5903. time: 0
  5904. value: 0.85
  5905. inSlope: 0
  5906. outSlope: 0
  5907. tangentMode: 136
  5908. weightedMode: 0
  5909. inWeight: 0.33333334
  5910. outWeight: 0.33333334
  5911. - serializedVersion: 3
  5912. time: 0.21666667
  5913. value: 0.85
  5914. inSlope: 0
  5915. outSlope: 0
  5916. tangentMode: 136
  5917. weightedMode: 0
  5918. inWeight: 0.33333334
  5919. outWeight: 0.33333334
  5920. - serializedVersion: 3
  5921. time: 0.8
  5922. value: 0.01
  5923. inSlope: 0
  5924. outSlope: 0
  5925. tangentMode: 136
  5926. weightedMode: 0
  5927. inWeight: 0.33333334
  5928. outWeight: 0.33333334
  5929. m_PreInfinity: 2
  5930. m_PostInfinity: 2
  5931. m_RotationOrder: 4
  5932. attribute: material._Tex
  5933. path: lanqiukang
  5934. classID: 23
  5935. script: {fileID: 0}
  5936. - curve:
  5937. serializedVersion: 2
  5938. m_Curve:
  5939. - serializedVersion: 3
  5940. time: 0
  5941. value: 1
  5942. inSlope: Infinity
  5943. outSlope: Infinity
  5944. tangentMode: 103
  5945. weightedMode: 0
  5946. inWeight: 0
  5947. outWeight: 0
  5948. m_PreInfinity: 2
  5949. m_PostInfinity: 2
  5950. m_RotationOrder: 4
  5951. attribute: m_IsActive
  5952. path: qanqiuchang
  5953. classID: 1
  5954. script: {fileID: 0}
  5955. - curve:
  5956. serializedVersion: 2
  5957. m_Curve:
  5958. - serializedVersion: 3
  5959. time: 1.6166667
  5960. value: 0
  5961. inSlope: 0
  5962. outSlope: 0
  5963. tangentMode: 136
  5964. weightedMode: 0
  5965. inWeight: 0.33333334
  5966. outWeight: 0.33333334
  5967. - serializedVersion: 3
  5968. time: 2.1833334
  5969. value: 1
  5970. inSlope: 0
  5971. outSlope: 0
  5972. tangentMode: 136
  5973. weightedMode: 0
  5974. inWeight: 0.33333334
  5975. outWeight: 0.33333334
  5976. - serializedVersion: 3
  5977. time: 3.95
  5978. value: 1
  5979. inSlope: 0
  5980. outSlope: 0
  5981. tangentMode: 136
  5982. weightedMode: 0
  5983. inWeight: 0.33333334
  5984. outWeight: 0.33333334
  5985. m_PreInfinity: 2
  5986. m_PostInfinity: 2
  5987. m_RotationOrder: 4
  5988. attribute: material._Color.r
  5989. path: qanqiuchang/Basketball (1)
  5990. classID: 23
  5991. script: {fileID: 0}
  5992. - curve:
  5993. serializedVersion: 2
  5994. m_Curve:
  5995. - serializedVersion: 3
  5996. time: 1.6166667
  5997. value: 0
  5998. inSlope: 0
  5999. outSlope: 0
  6000. tangentMode: 136
  6001. weightedMode: 0
  6002. inWeight: 0.33333334
  6003. outWeight: 0.33333334
  6004. - serializedVersion: 3
  6005. time: 2.1833334
  6006. value: 1
  6007. inSlope: 0
  6008. outSlope: 0
  6009. tangentMode: 136
  6010. weightedMode: 0
  6011. inWeight: 0.33333334
  6012. outWeight: 0.33333334
  6013. - serializedVersion: 3
  6014. time: 3.95
  6015. value: 1
  6016. inSlope: 0
  6017. outSlope: 0
  6018. tangentMode: 136
  6019. weightedMode: 0
  6020. inWeight: 0.33333334
  6021. outWeight: 0.33333334
  6022. m_PreInfinity: 2
  6023. m_PostInfinity: 2
  6024. m_RotationOrder: 4
  6025. attribute: material._Color.g
  6026. path: qanqiuchang/Basketball (1)
  6027. classID: 23
  6028. script: {fileID: 0}
  6029. - curve:
  6030. serializedVersion: 2
  6031. m_Curve:
  6032. - serializedVersion: 3
  6033. time: 1.6166667
  6034. value: 0
  6035. inSlope: 0
  6036. outSlope: 0
  6037. tangentMode: 136
  6038. weightedMode: 0
  6039. inWeight: 0.33333334
  6040. outWeight: 0.33333334
  6041. - serializedVersion: 3
  6042. time: 2.1833334
  6043. value: 1
  6044. inSlope: 0
  6045. outSlope: 0
  6046. tangentMode: 136
  6047. weightedMode: 0
  6048. inWeight: 0.33333334
  6049. outWeight: 0.33333334
  6050. - serializedVersion: 3
  6051. time: 3.95
  6052. value: 1
  6053. inSlope: 0
  6054. outSlope: 0
  6055. tangentMode: 136
  6056. weightedMode: 0
  6057. inWeight: 0.33333334
  6058. outWeight: 0.33333334
  6059. m_PreInfinity: 2
  6060. m_PostInfinity: 2
  6061. m_RotationOrder: 4
  6062. attribute: material._Color.b
  6063. path: qanqiuchang/Basketball (1)
  6064. classID: 23
  6065. script: {fileID: 0}
  6066. - curve:
  6067. serializedVersion: 2
  6068. m_Curve:
  6069. - serializedVersion: 3
  6070. time: 1.6166667
  6071. value: 1
  6072. inSlope: 0
  6073. outSlope: 0
  6074. tangentMode: 136
  6075. weightedMode: 0
  6076. inWeight: 0.33333334
  6077. outWeight: 0.33333334
  6078. - serializedVersion: 3
  6079. time: 2.1833334
  6080. value: 1
  6081. inSlope: 0
  6082. outSlope: 0
  6083. tangentMode: 136
  6084. weightedMode: 0
  6085. inWeight: 0.33333334
  6086. outWeight: 0.33333334
  6087. - serializedVersion: 3
  6088. time: 3.95
  6089. value: 1
  6090. inSlope: 0
  6091. outSlope: 0
  6092. tangentMode: 136
  6093. weightedMode: 0
  6094. inWeight: 0.33333334
  6095. outWeight: 0.33333334
  6096. m_PreInfinity: 2
  6097. m_PostInfinity: 2
  6098. m_RotationOrder: 4
  6099. attribute: material._Color.a
  6100. path: qanqiuchang/Basketball (1)
  6101. classID: 23
  6102. script: {fileID: 0}
  6103. - curve:
  6104. serializedVersion: 2
  6105. m_Curve:
  6106. - serializedVersion: 3
  6107. time: 1.6166667
  6108. value: 0
  6109. inSlope: 0
  6110. outSlope: 0
  6111. tangentMode: 136
  6112. weightedMode: 0
  6113. inWeight: 0.33333334
  6114. outWeight: 0.33333334
  6115. - serializedVersion: 3
  6116. time: 2.1833334
  6117. value: 0.9622642
  6118. inSlope: 0
  6119. outSlope: 0
  6120. tangentMode: 136
  6121. weightedMode: 0
  6122. inWeight: 0.33333334
  6123. outWeight: 0.33333334
  6124. - serializedVersion: 3
  6125. time: 3.95
  6126. value: 0.9622642
  6127. inSlope: 0
  6128. outSlope: 0
  6129. tangentMode: 136
  6130. weightedMode: 0
  6131. inWeight: 0.33333334
  6132. outWeight: 0.33333334
  6133. m_PreInfinity: 2
  6134. m_PostInfinity: 2
  6135. m_RotationOrder: 4
  6136. attribute: material._EmissionColor.r
  6137. path: qanqiuchang/Basketball (1)
  6138. classID: 23
  6139. script: {fileID: 0}
  6140. - curve:
  6141. serializedVersion: 2
  6142. m_Curve:
  6143. - serializedVersion: 3
  6144. time: 1.6166667
  6145. value: 0
  6146. inSlope: 0
  6147. outSlope: 0
  6148. tangentMode: 136
  6149. weightedMode: 0
  6150. inWeight: 0.33333334
  6151. outWeight: 0.33333334
  6152. - serializedVersion: 3
  6153. time: 2.1833334
  6154. value: 0.9622642
  6155. inSlope: 0
  6156. outSlope: 0
  6157. tangentMode: 136
  6158. weightedMode: 0
  6159. inWeight: 0.33333334
  6160. outWeight: 0.33333334
  6161. - serializedVersion: 3
  6162. time: 3.95
  6163. value: 0.9622642
  6164. inSlope: 0
  6165. outSlope: 0
  6166. tangentMode: 136
  6167. weightedMode: 0
  6168. inWeight: 0.33333334
  6169. outWeight: 0.33333334
  6170. m_PreInfinity: 2
  6171. m_PostInfinity: 2
  6172. m_RotationOrder: 4
  6173. attribute: material._EmissionColor.g
  6174. path: qanqiuchang/Basketball (1)
  6175. classID: 23
  6176. script: {fileID: 0}
  6177. - curve:
  6178. serializedVersion: 2
  6179. m_Curve:
  6180. - serializedVersion: 3
  6181. time: 1.6166667
  6182. value: 0
  6183. inSlope: 0
  6184. outSlope: 0
  6185. tangentMode: 136
  6186. weightedMode: 0
  6187. inWeight: 0.33333334
  6188. outWeight: 0.33333334
  6189. - serializedVersion: 3
  6190. time: 2.1833334
  6191. value: 0.9622642
  6192. inSlope: 0
  6193. outSlope: 0
  6194. tangentMode: 136
  6195. weightedMode: 0
  6196. inWeight: 0.33333334
  6197. outWeight: 0.33333334
  6198. - serializedVersion: 3
  6199. time: 3.95
  6200. value: 0.9622642
  6201. inSlope: 0
  6202. outSlope: 0
  6203. tangentMode: 136
  6204. weightedMode: 0
  6205. inWeight: 0.33333334
  6206. outWeight: 0.33333334
  6207. m_PreInfinity: 2
  6208. m_PostInfinity: 2
  6209. m_RotationOrder: 4
  6210. attribute: material._EmissionColor.b
  6211. path: qanqiuchang/Basketball (1)
  6212. classID: 23
  6213. script: {fileID: 0}
  6214. - curve:
  6215. serializedVersion: 2
  6216. m_Curve:
  6217. - serializedVersion: 3
  6218. time: 1.6166667
  6219. value: 1
  6220. inSlope: 0
  6221. outSlope: 0
  6222. tangentMode: 136
  6223. weightedMode: 0
  6224. inWeight: 0.33333334
  6225. outWeight: 0.33333334
  6226. - serializedVersion: 3
  6227. time: 2.1833334
  6228. value: 1
  6229. inSlope: 0
  6230. outSlope: 0
  6231. tangentMode: 136
  6232. weightedMode: 0
  6233. inWeight: 0.33333334
  6234. outWeight: 0.33333334
  6235. - serializedVersion: 3
  6236. time: 3.95
  6237. value: 1
  6238. inSlope: 0
  6239. outSlope: 0
  6240. tangentMode: 136
  6241. weightedMode: 0
  6242. inWeight: 0.33333334
  6243. outWeight: 0.33333334
  6244. m_PreInfinity: 2
  6245. m_PostInfinity: 2
  6246. m_RotationOrder: 4
  6247. attribute: material._EmissionColor.a
  6248. path: qanqiuchang/Basketball (1)
  6249. classID: 23
  6250. script: {fileID: 0}
  6251. - curve:
  6252. serializedVersion: 2
  6253. m_Curve:
  6254. - serializedVersion: 3
  6255. time: 1.6166667
  6256. value: 0
  6257. inSlope: 0
  6258. outSlope: 0
  6259. tangentMode: 136
  6260. weightedMode: 0
  6261. inWeight: 0.33333334
  6262. outWeight: 0.33333334
  6263. - serializedVersion: 3
  6264. time: 2.1833334
  6265. value: 1
  6266. inSlope: 0
  6267. outSlope: 0
  6268. tangentMode: 136
  6269. weightedMode: 0
  6270. inWeight: 0.33333334
  6271. outWeight: 0.33333334
  6272. - serializedVersion: 3
  6273. time: 3.95
  6274. value: 1
  6275. inSlope: 0
  6276. outSlope: 0
  6277. tangentMode: 136
  6278. weightedMode: 0
  6279. inWeight: 0.33333334
  6280. outWeight: 0.33333334
  6281. m_PreInfinity: 2
  6282. m_PostInfinity: 2
  6283. m_RotationOrder: 4
  6284. attribute: material._Color.r
  6285. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  6286. classID: 137
  6287. script: {fileID: 0}
  6288. - curve:
  6289. serializedVersion: 2
  6290. m_Curve:
  6291. - serializedVersion: 3
  6292. time: 1.6166667
  6293. value: 0
  6294. inSlope: 0
  6295. outSlope: 0
  6296. tangentMode: 136
  6297. weightedMode: 0
  6298. inWeight: 0.33333334
  6299. outWeight: 0.33333334
  6300. - serializedVersion: 3
  6301. time: 2.1833334
  6302. value: 1
  6303. inSlope: 0
  6304. outSlope: 0
  6305. tangentMode: 136
  6306. weightedMode: 0
  6307. inWeight: 0.33333334
  6308. outWeight: 0.33333334
  6309. - serializedVersion: 3
  6310. time: 3.95
  6311. value: 1
  6312. inSlope: 0
  6313. outSlope: 0
  6314. tangentMode: 136
  6315. weightedMode: 0
  6316. inWeight: 0.33333334
  6317. outWeight: 0.33333334
  6318. m_PreInfinity: 2
  6319. m_PostInfinity: 2
  6320. m_RotationOrder: 4
  6321. attribute: material._Color.g
  6322. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  6323. classID: 137
  6324. script: {fileID: 0}
  6325. - curve:
  6326. serializedVersion: 2
  6327. m_Curve:
  6328. - serializedVersion: 3
  6329. time: 1.6166667
  6330. value: 0
  6331. inSlope: 0
  6332. outSlope: 0
  6333. tangentMode: 136
  6334. weightedMode: 0
  6335. inWeight: 0.33333334
  6336. outWeight: 0.33333334
  6337. - serializedVersion: 3
  6338. time: 2.1833334
  6339. value: 1
  6340. inSlope: 0
  6341. outSlope: 0
  6342. tangentMode: 136
  6343. weightedMode: 0
  6344. inWeight: 0.33333334
  6345. outWeight: 0.33333334
  6346. - serializedVersion: 3
  6347. time: 3.95
  6348. value: 1
  6349. inSlope: 0
  6350. outSlope: 0
  6351. tangentMode: 136
  6352. weightedMode: 0
  6353. inWeight: 0.33333334
  6354. outWeight: 0.33333334
  6355. m_PreInfinity: 2
  6356. m_PostInfinity: 2
  6357. m_RotationOrder: 4
  6358. attribute: material._Color.b
  6359. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  6360. classID: 137
  6361. script: {fileID: 0}
  6362. - curve:
  6363. serializedVersion: 2
  6364. m_Curve:
  6365. - serializedVersion: 3
  6366. time: 1.6166667
  6367. value: 1
  6368. inSlope: 0
  6369. outSlope: 0
  6370. tangentMode: 136
  6371. weightedMode: 0
  6372. inWeight: 0.33333334
  6373. outWeight: 0.33333334
  6374. - serializedVersion: 3
  6375. time: 2.1833334
  6376. value: 1
  6377. inSlope: 0
  6378. outSlope: 0
  6379. tangentMode: 136
  6380. weightedMode: 0
  6381. inWeight: 0.33333334
  6382. outWeight: 0.33333334
  6383. - serializedVersion: 3
  6384. time: 3.95
  6385. value: 1
  6386. inSlope: 0
  6387. outSlope: 0
  6388. tangentMode: 136
  6389. weightedMode: 0
  6390. inWeight: 0.33333334
  6391. outWeight: 0.33333334
  6392. m_PreInfinity: 2
  6393. m_PostInfinity: 2
  6394. m_RotationOrder: 4
  6395. attribute: material._Color.a
  6396. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  6397. classID: 137
  6398. script: {fileID: 0}
  6399. - curve:
  6400. serializedVersion: 2
  6401. m_Curve:
  6402. - serializedVersion: 3
  6403. time: 1.6166667
  6404. value: 0
  6405. inSlope: 0
  6406. outSlope: 0
  6407. tangentMode: 136
  6408. weightedMode: 0
  6409. inWeight: 0.33333334
  6410. outWeight: 0.33333334
  6411. - serializedVersion: 3
  6412. time: 2.1833334
  6413. value: 0.2924528
  6414. inSlope: 0
  6415. outSlope: 0
  6416. tangentMode: 136
  6417. weightedMode: 0
  6418. inWeight: 0.33333334
  6419. outWeight: 0.33333334
  6420. - serializedVersion: 3
  6421. time: 3.95
  6422. value: 0.2924528
  6423. inSlope: 0
  6424. outSlope: 0
  6425. tangentMode: 136
  6426. weightedMode: 0
  6427. inWeight: 0.33333334
  6428. outWeight: 0.33333334
  6429. m_PreInfinity: 2
  6430. m_PostInfinity: 2
  6431. m_RotationOrder: 4
  6432. attribute: material._EmissionColor.r
  6433. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  6434. classID: 137
  6435. script: {fileID: 0}
  6436. - curve:
  6437. serializedVersion: 2
  6438. m_Curve:
  6439. - serializedVersion: 3
  6440. time: 1.6166667
  6441. value: 0
  6442. inSlope: 0
  6443. outSlope: 0
  6444. tangentMode: 136
  6445. weightedMode: 0
  6446. inWeight: 0.33333334
  6447. outWeight: 0.33333334
  6448. - serializedVersion: 3
  6449. time: 2.1833334
  6450. value: 0.2924528
  6451. inSlope: 0
  6452. outSlope: 0
  6453. tangentMode: 136
  6454. weightedMode: 0
  6455. inWeight: 0.33333334
  6456. outWeight: 0.33333334
  6457. - serializedVersion: 3
  6458. time: 3.95
  6459. value: 0.2924528
  6460. inSlope: 0
  6461. outSlope: 0
  6462. tangentMode: 136
  6463. weightedMode: 0
  6464. inWeight: 0.33333334
  6465. outWeight: 0.33333334
  6466. m_PreInfinity: 2
  6467. m_PostInfinity: 2
  6468. m_RotationOrder: 4
  6469. attribute: material._EmissionColor.g
  6470. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  6471. classID: 137
  6472. script: {fileID: 0}
  6473. - curve:
  6474. serializedVersion: 2
  6475. m_Curve:
  6476. - serializedVersion: 3
  6477. time: 1.6166667
  6478. value: 0
  6479. inSlope: 0
  6480. outSlope: 0
  6481. tangentMode: 136
  6482. weightedMode: 0
  6483. inWeight: 0.33333334
  6484. outWeight: 0.33333334
  6485. - serializedVersion: 3
  6486. time: 2.1833334
  6487. value: 0.2924528
  6488. inSlope: 0
  6489. outSlope: 0
  6490. tangentMode: 136
  6491. weightedMode: 0
  6492. inWeight: 0.33333334
  6493. outWeight: 0.33333334
  6494. - serializedVersion: 3
  6495. time: 3.95
  6496. value: 0.2924528
  6497. inSlope: 0
  6498. outSlope: 0
  6499. tangentMode: 136
  6500. weightedMode: 0
  6501. inWeight: 0.33333334
  6502. outWeight: 0.33333334
  6503. m_PreInfinity: 2
  6504. m_PostInfinity: 2
  6505. m_RotationOrder: 4
  6506. attribute: material._EmissionColor.b
  6507. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  6508. classID: 137
  6509. script: {fileID: 0}
  6510. - curve:
  6511. serializedVersion: 2
  6512. m_Curve:
  6513. - serializedVersion: 3
  6514. time: 1.6166667
  6515. value: 1
  6516. inSlope: 0
  6517. outSlope: 0
  6518. tangentMode: 136
  6519. weightedMode: 0
  6520. inWeight: 0.33333334
  6521. outWeight: 0.33333334
  6522. - serializedVersion: 3
  6523. time: 2.1833334
  6524. value: 1
  6525. inSlope: 0
  6526. outSlope: 0
  6527. tangentMode: 136
  6528. weightedMode: 0
  6529. inWeight: 0.33333334
  6530. outWeight: 0.33333334
  6531. - serializedVersion: 3
  6532. time: 3.95
  6533. value: 1
  6534. inSlope: 0
  6535. outSlope: 0
  6536. tangentMode: 136
  6537. weightedMode: 0
  6538. inWeight: 0.33333334
  6539. outWeight: 0.33333334
  6540. m_PreInfinity: 2
  6541. m_PostInfinity: 2
  6542. m_RotationOrder: 4
  6543. attribute: material._EmissionColor.a
  6544. path: qanqiuchang/basketball_shoot/Geometry/man-basketball-player
  6545. classID: 137
  6546. script: {fileID: 0}
  6547. - curve:
  6548. serializedVersion: 2
  6549. m_Curve:
  6550. - serializedVersion: 3
  6551. time: 2
  6552. value: 0.02
  6553. inSlope: 0
  6554. outSlope: 0
  6555. tangentMode: 136
  6556. weightedMode: 0
  6557. inWeight: 0.33333334
  6558. outWeight: 0.33333334
  6559. - serializedVersion: 3
  6560. time: 2.4333334
  6561. value: 1.28
  6562. inSlope: 0
  6563. outSlope: 0
  6564. tangentMode: 136
  6565. weightedMode: 0
  6566. inWeight: 0.33333334
  6567. outWeight: 0.33333334
  6568. m_PreInfinity: 2
  6569. m_PostInfinity: 2
  6570. m_RotationOrder: 4
  6571. attribute: material._Float1
  6572. path: Quad (2)
  6573. classID: 23
  6574. script: {fileID: 0}
  6575. m_EulerEditorCurves: []
  6576. m_HasGenericRootTransform: 0
  6577. m_HasMotionFloatCurves: 0
  6578. m_Events: []