欢迎来到天天文库
浏览记录
ID:34614745
大小:3.68 MB
页数:34页
时间:2019-03-08
《unity3d官方汽车教程的翻译版本car3》由会员上传分享,免费在线阅读,更多相关内容在学术论文-天天文库。
1、“TheCarTutorial”Part3CreatingaRacingGameforUnity在Unity中创建赛车游戏Part3:UndertheHood引擎盖之下We’vecoveredhowtoassembleaworkingcarfroma3dmodel,scriptsandbuilt-inComponents.Wehavealsolookedattheexposedvariablesandhowtheycanbeusedtotweakthecar’sbehavior.我们已经介绍了如何从3D
2、模型、脚本和内建的组件开始组装一辆可以工作的汽车,我们也看到披露出的变量和它们怎么被用来调整汽车的行为。Nowit’sabouttimewelookmorein-depthatthefinemechanicsinsidetheengineofthecar-TheCar-script.现在是时候我们来更深入的看看汽车引擎内的完美机械--汽车脚本。•DoubleclickontheCar.jsscripttoopenitwithyourcodeeditor.双击Car.js脚本并在你的代码编辑器中打开它。T
3、hisscriptcanatfirstglancebealittleintimidating,spanning500+linesofcodesandcomments,andalotofvariablesandfunctions.Don’tdespairthough.Thescriptisstructuredsothatwehaverelativelysmallfunctionswithmeaningfulnames,thatdoesexactlywhattheysaytheydo.Followingth
4、is,thecodeisnotlitteredwithcommentsthatexplainseverythingagain-simplybecausethecodeistellingit’sownstory.这个脚本乍一看可能有点吓人,超过500行的代码和注释,并且有许多变量和函数。但不要绝望。脚本已经被结构化了以便我们能得到一些相对小的且具有有意义的名字的函数,这正是它们想说和想做的,在此之后,代码就不会到处都是再次解释每一件事情的注释了--很简单由代码来告诉我们它们的内容。Thewaywesugg
5、estyoutolookatitistofindthebestentrypointsandthenfollowalong.InthiscasetheseentrypointswillbetheStart(),Update()andFixedUpdate()functions.方法是我们建议你找到一个最好的切入点,然后展开,这本例中这些切入点将会是Start(),Update()和FixedUpdate()函数。Eachofthese“main”functionsarecallingotherfuncti
6、ons.SowhenwebeginbylookingattheStart()function,weseethatthefirstfunctioncalledisSetupWheelColliders().Locatethatfunctioninthecodeandstudywhatitdoes,andthengobacktoStart()andgotothenextfunctionwhichisSetupCenterOfMass().Byfollowingthiscodetrailyougettheov
7、erviewoverwhatisactuallyhappeningincode,thatmakesthecarworkthewayitdoes.每一个“main”函数都是用来调用其他函数的,所以当我们开始看Start()函数时,我们看到调用的第一个函数是SetupWheelColliders(),在代码中寻找那个函数并学习它是如何做的,然后返回Start()函数继续下一个函数SetupCenterOfMass()。循着这个代码线索你将得到概括出在代码中实际发生了什么,这些和汽车的工作的方式一样。Inth
8、efollowingwewilllookatallthosefunctions.Wearenotgoingtoexplaineachlineofcode,butweareprovidinganentrypointandgoingthrougheverythingessentialthattakesplacefromthesetuptowhathappenseachframe.Sowithoutfurtherado,letusstartatt
此文档下载收益归作者所有