Unity3d_FPS游戏教程2

Unity3d_FPS游戏教程2

ID:38583362

大小:2.14 MB

页数:25页

时间:2019-06-15

Unity3d_FPS游戏教程2_第1页
Unity3d_FPS游戏教程2_第2页
Unity3d_FPS游戏教程2_第3页
Unity3d_FPS游戏教程2_第4页
Unity3d_FPS游戏教程2_第5页
资源描述:

《Unity3d_FPS游戏教程2》由会员上传分享,免费在线阅读,更多相关内容在教育资源-天天文库

1、FPS游戏教程2Part2:Enhancements第二部分增强Thisintermediate-leveltutorialextendsupontheBasicFPStutorialbyintroducinggameelementssuchasmultipleweapons,damageandenemies.这个中级教程是FPS基本教程的扩展,介绍游戏元素例如多种武器、毁伤和敌人。PrerequisitesThistutorialassumesthatyouarefamiliarwiththeUnityinterfaceandbasicscriptingconce

2、pts.Additionally,youshouldalreadybefamiliarwiththeconceptsdiscussedinPart1oftheFPStutorialseries.这个指南已经默认了你已经熟悉了Unity界面和基本的脚本概念。你已经熟悉了第一部分的FPS概念的讨论。Beforewebegin-levelsetup在我们开始层面设置之前DownloadFPS_Tutorial.zip,unzip,andopentheprojectfolderinUnity.IfyouhavecompletedPart1,thenunzipthefiles

3、toanewfolder.下载FPS_Tutorial.zip解压缩并且在U你体验中打开项目,如果你有已完成的第一部分,这时解压缩它们到一个新的目录。ImporttheStandardAssetsUnityPackage.导入StandardAssets标准资源包AddthemainLevelMeshandFPScontrollerprefabtothescene.增加mainLevelMesh和FPS控制预制物体到场景中。NOTEInthistutorialnonewscriptsneedtocreated.We’llbeusingtheonesthatwered

4、ownloadedfromtheUnityPackage.25注意在这个指南中没有新的脚本需要建立,我们将使用下载的Unity软件包中的一些东西。Weaponswitching武器开关Beforewediscusshowtocreateeachindividualweapon,weneedtowritesomecodetomanagehowtheweaponsareinitializedandswitchedfromonetoanother.Let’slookattheJavascriptforPlayerWeapons.js:在我们讨论如何建立每一个个体的武器之前

5、,我们需要写一些代码以便管理这些武器怎么被初始化并且能被另一个(武器)关闭,让我们看一下PlayerWeapons.js:这个脚本代码:functionAwake(){//Selectthefirstweapon选择第一个武器SelectWeapon(0);}Thisfunctioninitializesweapon0asthedefaultweapon.这个函数初始化武器0为缺省的武器。functionUpdate(){//Didtheuserpressfire?用户按开火?if(Input.GetButton("Fire1"))BroadcastMessage(

6、"Fire");if(Input.GetKeyDown("1")){SelectWeapon(0);}elseif(Input.GetKeyDown("2"))25{SelectWeapon(1);}}Thisfunctiondetectskeyboardinput;thefirebutton,the“1”buttonforweapon1orthe“2”buttonforweapon2.TheweaponswillbechildrenobjectsoftheMainCamera.functionSelectWeapon(index:int){for(vari=0;i

7、

当前文档最多预览五页,下载文档查看全文

此文档下载收益归作者所有

当前文档最多预览五页,下载文档查看全文
温馨提示:
1. 部分包含数学公式或PPT动画的文件,查看预览时可能会显示错乱或异常,文件下载后无此问题,请放心下载。
2. 本文档由用户上传,版权归属用户,天天文库负责整理代发布。如果您对本文档版权有争议请及时联系客服。
3. 下载前请仔细阅读文档内容,确认文档内容符合您的需求后进行下载,若出现内容与标题不符可向本站投诉处理。
4. 下载文档时可能由于网络波动等原因无法下载或下载错误,付费完成后未能成功下载的用户请联系客服处理。