快速上手:制作第一个游戏

Cocos Creator 3D编辑器的强大之处就是可以让开发者快速的制作游戏原型。

下面我们将跟随教程制作一款名叫 一步两步 的魔性小游戏。这款游戏考验玩家的反应能力,根据路况选择是要跳一步还是跳两步,“一步两步,一步两步,一步一步似爪牙似魔鬼的步伐”。

可以在 这里 体验一下游戏的完成形态。

新建项目

如果您还不了解如何获取和启动 Cocos Creator 3D,请阅读 安装和启动 一节。

  • 首先启动 Cocos Creator 3D,然后新建一个名为 MindYourStep 的项目,如果不知道如何创建项目,请阅读 Hello World!

  • 新建项目后会看到如下的编辑器界面:

main window

创建游戏场景

在 Cocos Creator 3D 中,游戏场景(Scene) 是开发时组织游戏内容的中心,也是呈现给玩家所有游戏内容的载体。游戏场景中一般会包括以下内容:

  • 场景物体
  • 角色
  • UI
  • 以组件形式附加在场景节点上的游戏逻辑脚本当玩家运行游戏时,就会载入游戏场景,游戏场景加载后就会自动运行所包含组件的游戏脚本,实现各种各样开发者设置的逻辑功能。所以除了资源以外,游戏场景是一切内容创作的基础。现在,让我们来新建一个场景。

  • 资源管理器 中点击选中 assets 目录,点击 资源管理器 左上角的加号按钮,选择文件夹,命名为Scenes。

create scene

  • 点击先中Scenes目录(下图把一些常用的文件夹都提前创建好了),点击鼠标右键,在弹出的菜单中选择 场景文件

create scene

  • 我们创建了一个名叫 New Scene 的场景文件,创建完成后场景文件 New Scene 的名称会处于编辑状态,将它重命名为 Main。

  • 双击 Main,就会在 场景编辑器层级管理器 中打开这个场景。

添加跑道

我们的主角需要在一个由方块(Block)组成的跑道上从屏幕左边向右边移动。我们使用编辑器自带的立方体(Cube)来组成道路。

  • 层级管理器 中创建一个立方体(Cube),并命名为Cube。create cube
  • 选中Cube,按Ctrl+D来复制出3个Cube。
  • 将3个Cube按以下坐标排列:第一个节点位置(0,-1.5,0),第二个节点位置(1,-1.5,0),第三个节点位置(2,-1.5,0)效果如下:

create ground

添加主角

创建主角节点

首先创建一个名字为Player的空节点,然后在这个空节点下创建名为Body的主角模型节点,为了方便,我们采用编辑器自带的胶囊体模型做为主角模型。

create player node

分为两个节点的好处是,我们可以使用脚本控制Player节点来使主角进行水平方向移动,而在Body节点上做一些垂直方向上的动画(比如原地跳起后下落),两者叠加形成一个跳越动画。将Player节点设置在(0,0,0)位置,使得它能站在第一个方块上。

效果如下:

create player

编写主角脚本

想要主角影响鼠标事件来进行移动,我们就需要编写自定义的脚本。如果您从没写过程序也不用担心,我们会在教程中提供所有需要的代码,只要复制粘贴到正确的位置就可以了,之后这部分工作可以找您的程序员小伙伴来解决。下面让我们开始创建驱动主角行动的脚本吧。

创建脚本

  • 如果还没有创建Scripts文件夹,首先在 资源管理器 中右键点击 assets 文件夹,选择 新建 -> 文件夹,重命名为Scripts。
  • 右键点击Scripts文件夹,选择 新建 -> TypeScript,创建一个 TypeScript 脚本,有关TypeScript资料可以查看 TypeScript 官方网站
  • 将新建脚本的名字改为PlayerController,双击这个脚本,打开代码编辑器(例如VSCode)。

create player script

注意: Cocos Creator 3D 中脚本名称就是组件的名称,这个命名是大小写敏感的!如果组件名称的大小写不正确,将无法正确通过名称使用组件!

编写脚本代码

在打开的 PlayerController 脚本里已经有了预先设置好的一些代码块,如下所示:

  1. import { _decorator, Component } from "cc";
  2. const { ccclass, property } = _decorator;
  3. @ccclass("PlayerController")
  4. export class PlayerController extends Component {
  5. /* class member could be defined like this */
  6. // dummy = '';
  7. /* use `property` decorator if your want the member to be serializable */
  8. // @property
  9. // serializableDummy = 0;
  10. start () {
  11. // Your initialization goes here.
  12. }
  13. // update (deltaTime: number) {
  14. // // Your update function goes here.
  15. // }
  16. }

这些代码就是编写一个组件(脚本)所需的结构。具有这样结构的脚本就是 Cocos Creator 3D 中的 组件(Component),他们能够挂载到场景中的节点上,提供控制节点的各种功能,更详细的脚本信息可以查看 脚本

我们在脚本中添加对鼠标事件的监听,然后让Player动起来,将PlayerController中代码做如下修改。

  1. import { _decorator, Component, Vec3, systemEvent, SystemEvent, EventMouse, AnimationComponent } from "cc";
  2. const { ccclass, property } = _decorator;
  3. @ccclass("PlayerController")
  4. export class PlayerController extends Component {
  5. /* class member could be defined like this */
  6. // dummy = '';
  7. /* use `property` decorator if your want the member to be serializable */
  8. // @property
  9. // serializableDummy = 0;
  10. // for fake tween
  11. private _startJump: boolean = false;
  12. private _jumpStep: number = 0;
  13. private _curJumpTime: number = 0;
  14. private _jumpTime: number = 0.1;
  15. private _curJumpSpeed: number = 0;
  16. private _curPos: Vec3 = cc.v3();
  17. private _deltaPos: Vec3 = cc.v3(0, 0, 0);
  18. private _targetPos: Vec3 = cc.v3();
  19. private _isMoving = false;
  20. start () {
  21. // Your initialization goes here.
  22. systemEvent.on(SystemEvent.EventType.MOUSE_UP, this.onMouseUp, this);
  23. }
  24. onMouseUp(event: EventMouse) {
  25. if (event.getButton() === 0) {
  26. this.jumpByStep(1);
  27. } else if (event.getButton() === 2) {
  28. this.jumpByStep(2);
  29. }
  30. }
  31. jumpByStep(step: number) {
  32. if (this._isMoving) {
  33. return;
  34. }
  35. this._startJump = true;
  36. this._jumpStep = step;
  37. this._curJumpTime = 0;
  38. this._curJumpSpeed = this._jumpStep / this._jumpTime;
  39. this.node.getPosition(this._curPos);
  40. Vec3.add(this._targetPos, this._curPos, cc.v3(this._jumpStep, 0, 0));
  41. this._isMoving = true;
  42. }
  43. onOnceJumpEnd() {
  44. this._isMoving = false;
  45. }
  46. update (deltaTime: number) {
  47. if (this._startJump) {
  48. this._curJumpTime += deltaTime;
  49. if (this._curJumpTime > this._jumpTime) {
  50. // end
  51. this.node.setPosition(this._targetPos);
  52. this._startJump = false;
  53. this.onOnceJumpEnd();
  54. } else {
  55. // tween
  56. this.node.getPosition(this._curPos);
  57. this._deltaPos.x = this._curJumpSpeed * deltaTime;
  58. Vec3.add(this._curPos, this._curPos, this._deltaPos);
  59. this.node.setPosition(this._curPos);
  60. }
  61. }
  62. }
  63. }

现在我们可以把 PlayerController 组件添加到主角节点上。在 层级管理器 中选中 Player 节点,然后在 属性检查器 中点击 添加组件 按钮,选择 添加用户脚本组件 -> PlayerController,为主角节点添加 PlayerController 组件。

add player controller comp

为了能在运行时看到物体,我们需要将场景中的Camera进行一些参数调整,将位置放到(0,0,13),Color设置为(50,90,255,255):

camera setting

现在点击工具栏中心位置的Play按钮play button,在打开的网页中点击鼠标左键和右键,可以看到如下画面:

player move

更多的预览功能,可以参考 项目预览调试

添加角色动画

从上面运行的结果可以看到单纯对Player进行水平方向的移动是十分呆板的,我们要让Player跳跃起来才比较有感觉,我们可以通过为角色添加垂直方向的动画来达到这个效果。有关 动画编辑器 的更多信息,请阅读 动画编辑器

  • 选中场景中的Body节点,编辑器下方 控制台 边上的 动画编辑器,添加Animation组件并创建Clip,命名为oneStep。

player move

  • 进入动画编辑模式,添加position属性轨道,并添加三个关键帧,position值分别为(0,0,0)、(0,0.5,0)、(0,0,0)。

add keyframe

退出动画编辑模式前前记得要保存动画,否则做的动画就白费了。

  • 我们还可以通过 资源管理器 来创建Clip,下面我们创建一个名为twoStep的Clip并将它添加到Body身上的 AnimationComponent 上,这里为了录制方便调整了一下面板布局。

add animation from assets

  • 进入动画编辑模式,选择并编辑twoStep的clip,类似第2步,添加三个position的关键帧,分别为(0,0,0)、(0,1,0)、(0,0,0)。

edit second clip

  • PlayerController组件 中引用 动画组件 ,我们需要在代码中根据跳的步数不同来播放不同的动画。

首先需要 在 PlayerController组件 中引用Body身上的 AnimationComponent

  1. @property({type: AnimationComponent})
  2. public BodyAnim: AnimationComponent = null;

然后在 属性检查器 中将Body身上的 AnimationComponent 拖到这个变量上。

drag to animComp

在跳跃的函数 jumpByStep 中加入动画播放的代码:

  1. if (step === 1) {
  2. this.BodyAnim.play('oneStep');
  3. } else if (step === 2) {
  4. this.BodyAnim.play('twoStep');
  5. }

点击Play按钮,点击鼠标左键、右键,可以看到新的跳跃效果:

preview with jump

跑道升级

为了让游戏有更久的生命力,我们需要一个很长的跑道来让Player在上面一直往右边跑,在场景中复制一堆Cube并编辑位置来组成跑道显然不是一个明智的做法,我们通过脚本完成跑道的自动创建。

游戏管理器(GameManager)

一般游戏都会有一个管理器,主要负责整个游戏生命周期的管理,可以将跑道的动态创建代码放到这里。在场景中创建一个名为GameManager的节点,然后在 assets/Scripts 中创建一个名为GameManager的ts脚本文件,并将它添加到GameManager节点上。

制作Prefab

对于需要重复生成的节点,我们可以将他保存成 Prefab(预制) 资源,作为我们动态生成节点时使用的模板。关于 Prefab 的更多信息,请阅读 预制资源(Prefab)。我们将生成跑道的基本元素正方体(Cube)制作成Prefab,之后可以把场景中的三个Cube都删除了。

create cube prefab

添加自动创建跑道代码

我们需要一个很长的跑道,理想的方法是能动态增加跑道的长度,这样可以永无止境的跑下去,这里为了方便我们先生成一个固定长度的跑道,跑道长度可以自己定义。跑道上会生成一些坑,跳到坑上就GameOver了。将GameManager脚本中代码替换成以下代码:

  1. import { _decorator, Component, Prefab, instantiate, Node, CCInteger} from "cc";
  2. const { ccclass, property } = _decorator;
  3. enum BlockType{
  4. BT_NONE,
  5. BT_STONE,
  6. };
  7. @ccclass("GameManager")
  8. export class GameManager extends Component {
  9. @property({type: Prefab})
  10. public cubePrfb: Prefab = null;
  11. @property({type: CCInteger})
  12. public roadLength: Number = 50;
  13. private _road: number[] = [];
  14. start () {
  15. this.generateRoad();
  16. }
  17. generateRoad() {
  18. this.node.removeAllChildren(true);
  19. this._road = [];
  20. // startPos
  21. this._road.push(BlockType.BT_STONE);
  22. for (let i = 1; i < this.roadLength; i++) {
  23. if (this._road[i-1] === BlockType.BT_NONE) {
  24. this._road.push(BlockType.BT_STONE);
  25. } else {
  26. this._road.push(Math.floor(Math.random() * 2));
  27. }
  28. }
  29. for (let j = 0; j < this._road.length; j++) {
  30. let block: Node = this.spawnBlockByType(this._road[j]);
  31. if (block) {
  32. this.node.addChild(block);
  33. block.setPosition(j, -1.5, 0);
  34. }
  35. }
  36. }
  37. spawnBlockByType(type: BlockType) {
  38. let block = null;
  39. switch(type) {
  40. case BlockType.BT_STONE:
  41. block = instantiate(this.cubePrfb);
  42. break;
  43. }
  44. return block;
  45. }
  46. // update (deltaTime: number) {
  47. // // Your update function goes here.
  48. // }
  49. }

在GameManager的inspector面板中可以通过修改roadLength的值来改变跑道的长度。预览可以看到现在自动生成了跑道,不过因为Camera没有跟随Player移动,所以看不到后面的跑道,我们可以将场景中的Camera设置为Player的子节点。

drag camera to player

这样Camera就会跟随Player的移动而移动,现在预览可以从头跑到尾的观察生成的跑道了。

增加开始菜单

开始菜单是游戏不可或缺的一部分,我们可以在这里加入游戏名称、游戏简介、制作人员等信息。

  • 添加一个名为Play的按钮

create button

这个操作生成了一个Canvas节点,一个PlayButton节点和一个Label节点。因为UI组件需要在带有 CanvasComponent 的父节点下才能显示,所以编辑器在发现目前场景中没有带这个组件的节点时会自动添加一个。创建按钮后,将Label节点上的 cc.LabelComponent 的String属性从Button改为Play。

  • 在Canvas底下创建一个名字为StartMenu的空节点,将PlayButton拖到它底下。我们可以通过点击工具栏上的2D/3D按钮2d-view来切换到2D编辑视图下进行UI编辑操作,详细的描述请查阅 场景编辑
  • 增加一个背景框,在StartMenu下新建一个名字为BG的Sprite节点,调节它的位置到PlayButton的上方,设置它的宽高为(200,200),并将它的SpriteFrame设置为 internal/default_ui/default_sprite_splashchange spriteFrame
  • 添加一个名为Title的 Label 用于开始菜单的标题,。add title label

  • 修改Title的文字,并调整Title的位置、文字大小、颜色。modify title

  • 增加操作的Tips,然后调整PlayButton的位置,一个简单的开始菜单就完成了modify title

  • 增加游戏状态逻辑,一般我们可以将游戏分为三个状态:

    • 初始化(Init):显示游戏菜单,初始化一些资源。
    • 游戏进行中(Playing):隐藏游戏菜单,玩家可以操作角度进行游戏。
    • 结束(End):游戏结束,显示结束菜单。使用一个枚举(enum)类型来表示这几个状态。
  1. enum BlockType{
  2. BT_NONE,
  3. BT_STONE,
  4. };
  5. enum GameState{
  6. GS_INIT,
  7. GS_PLAYING,
  8. GS_END,
  9. };

GameManager脚本中加入表示当前状态的私有变量

  1. private _curState: GameState = GameState.GS_INIT;

为了在开始时不让用户操作角色,而在游戏进行时让用户操作角色,我们需要动态的开启和关闭角色对鼠标消息的监听。 所以对PlayerController做如下的修改:

  1. start () {
  2. // Your initialization goes here.
  3. //systemEvent.on(SystemEvent.EventType.MOUSE_UP, this.onMouseUp, this);
  4. }
  5. setInputActive(active: boolean) {
  6. if (active) {
  7. systemEvent.on(SystemEvent.EventType.MOUSE_UP, this.onMouseUp, this);
  8. } else {
  9. systemEvent.off(SystemEvent.EventType.MOUSE_UP, this.onMouseUp, this);
  10. }
  11. }

然后需要在GameManager脚本中引用PlayerController,需要在Inspector中将场景的Player拖入到这个变量中。

  1. @property({type: PlayerController})
  2. public playerCtrl: PlayerController = null;

为了动态的开启\关闭开启菜单,我们需要在GameManager中引用StartMenu节点,需要在Inspector中将场景的StartMenu拖入到这个变量中。

  1. @property({type: Node})
  2. public startMenu: Node = null;

add player to game manager

增加状态切换代码,并修改GameManger的初始化方法:

  1. start () {
  2. this.curState = GameState.GS_INIT;
  3. }
  4. init() {
  5. this.startMenu.active = true;
  6. this.generateRoad();
  7. this.playerCtrl.setInputActive(false);
  8. this.playerCtrl.node.setPosition(cc.v3());
  9. }
  10. set curState (value: GameState) {
  11. switch(value) {
  12. case GameState.GS_INIT:
  13. this.init();
  14. break;
  15. case GameState.GS_PLAYING:
  16. this.startMenu.active = false;
  17. setTimeout(() => { //直接设置active会直接开始监听鼠标事件,做了一下延迟处理
  18. this.playerCtrl.setInputActive(true);
  19. }, 0.1);
  20. break;
  21. case GameState.GS_END:
  22. break;
  23. }
  24. this._curState = value;
  25. }
  • 添加对Play按钮的事件监听。 为了能在点击Play按钮后开始游戏,我们需要对按钮的点击事件做出响应。 在GameManager脚本中加入响应按钮点击的代码,在点击后进入游戏的Playing状态:
  1. onStartButtonClicked() {
  2. this.curState = GameState.GS_PLAYING;
  3. }

然后在Play按钮的Inspector上添加ClickEvents的响应函数。

play button inspector

现在预览场景就可以点击Play按钮开始游戏了。

添加游戏结束逻辑

目前游戏角色只是呆呆的往前跑,我们需要添加游戏规则,来让他跑的更有挑战性。

  • 角色每一次跳跃结束需要发出消息,并将自己当前所在位置做为参数发出消息在PlayerController中记录自己跳了多少步
  1. private _curMoveIndex = 0;
  2. // ...
  3. jumpByStep(step: number) {
  4. // ...
  5. this._curMoveIndex += step;
  6. }

在每次跳跃结束发出消息:

  1. onOnceJumpEnd() {
  2. this._isMoving = false;
  3. this.node.emit('JumpEnd', this._curMoveIndex);
  4. }
  • 在GameManager中监听角色跳跃结束事件,并根据规则判断输赢增加失败和结束判断,如果跳到空方块或是超过了最大长度值都结束:
  1. checkResult(moveIndex: number) {
  2. if (moveIndex <= this.roadLength) {
  3. if (this._road[moveIndex] == BlockType.BT_NONE) { //跳到了空方块上
  4. this.curState = GameState.GS_INIT;
  5. }
  6. } else { // 跳过了最大长度
  7. this.curState = GameState.GS_INIT;
  8. }
  9. }

监听角色跳跃消息,并调用判断函数:

  1. start () {
  2. this.curState = GameState.GS_INIT;
  3. this.playerCtrl.node.on('JumpEnd', this.onPlayerJumpEnd, this);
  4. }
  5. // ...
  6. onPlayerJumpEnd(moveIndex: number) {
  7. this.checkResult(moveIndex);
  8. }

此时预览,会发现重新开始游戏时会有判断出错,是因为我们重新开始时没有重置PlayerController中的_curMoveIndex属性值。所以我们在PlayerController中增加一个reset函数:

  1. reset() {
  2. this._curMoveIndex = 0;
  3. }

在GameManager的init函数调用reset来重置PlayerController的属性。

  1. init() {
  2. \\ ...
  3. this.playerCtrl.reset();
  4. }

步数显示

我们可以将当前跳的步数显示到界面上,这样在跳跃过程中看着步数的不断增长会十分有成就感。

  • 在Canvas下新建一个名为Steps的Label,调整位置、字体大小等属性。

steps label

  • 在GameManager中引用这个Label
  1. @property({type: LabelComponent})
  2. public stepsLabel: LabelComponent = null;

steps label to game manager

  • 将当前步数数据更新到这个Label中因为我们现在没有结束界面,游戏结束就跳回开始界面,所以在开始界面要看到上一次跳的步数,因此我们在进入Playing状态时,将步数重置为0。
  1. set curState (value: GameState) {
  2. switch(value) {
  3. case GameState.GS_INIT:
  4. this.init();
  5. break;
  6. case GameState.GS_PLAYING:
  7. this.startMenu.active = false;
  8. this.stepsLabel.string = '0'; // 将步数重置为0
  9. setTimeout(() => { //直接设置active会直接开始监听鼠标事件,做了一下延迟处理
  10. this.playerCtrl.setInputActive(true);
  11. }, 0.1);
  12. break;
  13. case GameState.GS_END:
  14. break;
  15. }
  16. this._curState = value;
  17. }

在响应角色跳跃的函数中,将步数更新到Label控件上

  1. onPlayerJumpEnd(moveIndex: number) {
  2. this.stepsLabel.string = '' + moveIndex;
  3. this.checkResult(moveIndex);
  4. }

光照和阴影

有光的地方就会有影子,光和影构成明暗交错的3D世界。接下来我们为角色加上简单的影子。

开启阴影

  • 层级管理器 中点击最顶部的 Scene 节点,将planarShadows选项中的Enabled打钩,并修改Distance和Normal参数

planar shadows

  • 点击Player节点下的Body节点,将 cc.ModelComponent 下的ShadowCastingMode设置为ON。 model shadow

此时在场景编辑器中会看到一个阴影面片,预览会发现看不到这个阴影,因为它在模型的正后方,被胶囊体盖住了。

player shadow

调整光照

新建场景时默认会添加一个 DirctionalLight ,由这个平行光计算阴影,所以为了让阴影换个位置显示,我们可以调整这个平行光的方向。在 层级管理器 中点击选中 Main Light 节点,调整Rotation参数为(-10,17,0)。

main light

预览可以看到影子效果:

player shadow preview

添加主角模型

做为一个官方教程,用胶囊体当主角显的有点寒碜,所以我们花(低)重(预)金(算)制作了一个Cocos主角。

导入模型资源

从原始资源导入模型、材质、动画等资源不是本篇基础教程的重点,所以这边直接使用已经导入工程的资源。将项目工程中assets目录下的cocos文件夹拷贝到你自己工程的assets目录下。

添加到场景中

在cocos文件中已经包含了一个名为Cocos的Prefab,将它拖到场景中Player下的Body节点中。

add cocos prefab

此时会发现模型有些暗,可以加个聚光灯,以突出它锃光瓦亮的脑门。

add cocos light

添加跳跃动画

现在预览可以看到主角初始会有一个待机动画,但是跳跃时还是用这个待机动画会显得很不协调,所以我们在跳跃过程中换成跳跃的动画。在 PlayerController 类中添加一个引用模型动画的变量:

  1. @property({type: SkeletalAnimationComponent})
  2. public CocosAnim: SkeletalAnimationComponent = null;

然后在Inspector中要将Cocos节点拖入这个变量里。在jumpByStep函数中播放跳跃动画

  1. jumpByStep(step: number) {
  2. if (this._isMoving) {
  3. return;
  4. }
  5. this._startJump = true;
  6. this._jumpStep = step;
  7. this._curJumpTime = 0;
  8. this._curJumpSpeed = this._jumpStep / this._jumpTime;
  9. this.node.getPosition(this._curPos);
  10. Vec3.add(this._targetPos, this._curPos, cc.v3(this._jumpStep, 0, 0));
  11. this._isMoving = true;
  12. this.CocosAnim.getState('cocos_anim_jump').speed = 3.5; //跳跃动画时间比较长,这里加速播放
  13. this.CocosAnim.play('cocos_anim_jump'); //播放跳跃动画
  14. if (step === 1) {
  15. //this.BodyAnim.play('oneStep');
  16. } else if (step === 2) {
  17. this.BodyAnim.play('twoStep');
  18. }
  19. this._curMoveIndex += step;
  20. }

在onOnceJumpEnd函数中让主角变为待机状态,播放待机动画。

  1. onOnceJumpEnd() {
  2. this._isMoving = false;
  3. this.CocosAnim.play('cocos_anim_idle');
  4. this.node.emit('JumpEnd', this._curMoveIndex);
  5. }

预览效果:

cocos play

最终代码

PlayerController.ts

  1. import { _decorator, Component, Vec3, systemEvent, SystemEvent, EventMouse, AnimationComponent, SkeletalAnimationComponent } from "cc";
  2. const { ccclass, property } = _decorator;
  3. @ccclass("PlayerController")
  4. export class PlayerController extends Component {
  5. @property({type: AnimationComponent})
  6. public BodyAnim: AnimationComponent = null;
  7. @property({type: SkeletalAnimationComponent})
  8. public CocosAnim: SkeletalAnimationComponent = null;
  9. // for fake tween
  10. private _startJump: boolean = false;
  11. private _jumpStep: number = 0;
  12. private _curJumpTime: number = 0;
  13. private _jumpTime: number = 0.3;
  14. private _curJumpSpeed: number = 0;
  15. private _curPos: Vec3 = cc.v3();
  16. private _deltaPos: Vec3 = cc.v3(0, 0, 0);
  17. private _targetPos: Vec3 = cc.v3();
  18. private _isMoving = false;
  19. private _curMoveIndex = 0;
  20. start () {
  21. }
  22. reset() {
  23. this._curMoveIndex = 0;
  24. }
  25. setInputActive(active: boolean) {
  26. if (active) {
  27. systemEvent.on(SystemEvent.EventType.MOUSE_UP, this.onMouseUp, this);
  28. } else {
  29. systemEvent.off(SystemEvent.EventType.MOUSE_UP, this.onMouseUp, this);
  30. }
  31. }
  32. onMouseUp(event: EventMouse) {
  33. if (event.getButton() === 0) {
  34. this.jumpByStep(1);
  35. } else if (event.getButton() === 2) {
  36. this.jumpByStep(2);
  37. }
  38. }
  39. jumpByStep(step: number) {
  40. if (this._isMoving) {
  41. return;
  42. }
  43. this._startJump = true;
  44. this._jumpStep = step;
  45. this._curJumpTime = 0;
  46. this._curJumpSpeed = this._jumpStep / this._jumpTime;
  47. this.node.getPosition(this._curPos);
  48. Vec3.add(this._targetPos, this._curPos, cc.v3(this._jumpStep, 0, 0));
  49. this._isMoving = true;
  50. this.CocosAnim.getState('cocos_anim_jump').speed = 3.5; //跳跃动画时间比较长,这里加速播放
  51. this.CocosAnim.play('cocos_anim_jump'); //播放跳跃动画
  52. if (step === 1) {
  53. //this.BodyAnim.play('oneStep');
  54. } else if (step === 2) {
  55. this.BodyAnim.play('twoStep');
  56. }
  57. this._curMoveIndex += step;
  58. }
  59. onOnceJumpEnd() {
  60. this._isMoving = false;
  61. this.CocosAnim.play('cocos_anim_idle');
  62. this.node.emit('JumpEnd', this._curMoveIndex);
  63. }
  64. update (deltaTime: number) {
  65. if (this._startJump) {
  66. this._curJumpTime += deltaTime;
  67. if (this._curJumpTime > this._jumpTime) {
  68. // end
  69. this.node.setPosition(this._targetPos);
  70. this._startJump = false;
  71. this.onOnceJumpEnd();
  72. } else {
  73. // tween
  74. this.node.getPosition(this._curPos);
  75. this._deltaPos.x = this._curJumpSpeed * deltaTime;
  76. Vec3.add(this._curPos, this._curPos, this._deltaPos);
  77. this.node.setPosition(this._curPos);
  78. }
  79. }
  80. }
  81. }

GameManager.ts

  1. import { _decorator, Component, Prefab, instantiate, Node, LabelComponent, CCInteger} from "cc";
  2. import { PlayerController } from "./PlayerController";
  3. const { ccclass, property } = _decorator;
  4. enum BlockType{
  5. BT_NONE,
  6. BT_STONE,
  7. };
  8. enum GameState{
  9. GS_INIT,
  10. GS_PLAYING,
  11. GS_END,
  12. };
  13. @ccclass("GameManager")
  14. export class GameManager extends Component {
  15. @property({type: Prefab})
  16. public cubePrfb: Prefab = null;
  17. @property({type: CCInteger})
  18. public roadLength: Number = 50;
  19. private _road: number[] = [];
  20. @property({type: Node})
  21. public startMenu: Node = null;
  22. @property({type: PlayerController})
  23. public playerCtrl: PlayerController = null;
  24. private _curState: GameState = GameState.GS_INIT;
  25. @property({type: LabelComponent})
  26. public stepsLabel: LabelComponent = null;
  27. start () {
  28. this.curState = GameState.GS_INIT;
  29. this.playerCtrl.node.on('JumpEnd', this.onPlayerJumpEnd, this);
  30. }
  31. init() {
  32. this.startMenu.active = true;
  33. this.generateRoad();
  34. this.playerCtrl.setInputActive(false);
  35. this.playerCtrl.node.setPosition(cc.v3());
  36. this.playerCtrl.reset();
  37. }
  38. set curState (value: GameState) {
  39. switch(value) {
  40. case GameState.GS_INIT:
  41. this.init();
  42. break;
  43. case GameState.GS_PLAYING:
  44. this.startMenu.active = false;
  45. this.stepsLabel.string = '0'; // 将步数重置为0
  46. setTimeout(() => { //直接设置active会直接开始监听鼠标事件,做了一下延迟处理
  47. this.playerCtrl.setInputActive(true);
  48. }, 0.1);
  49. break;
  50. case GameState.GS_END:
  51. break;
  52. }
  53. this._curState = value;
  54. }
  55. generateRoad() {
  56. this.node.removeAllChildren();
  57. this._road = [];
  58. // startPos
  59. this._road.push(BlockType.BT_STONE);
  60. for (let i = 1; i < this.roadLength; i++) {
  61. if (this._road[i-1] === BlockType.BT_NONE) {
  62. this._road.push(BlockType.BT_STONE);
  63. } else {
  64. this._road.push(Math.floor(Math.random() * 2));
  65. }
  66. }
  67. for (let j = 0; j < this._road.length; j++) {
  68. let block: Node = this.spawnBlockByType(this._road[j]);
  69. if (block) {
  70. this.node.addChild(block);
  71. block.setPosition(j, -1.5, 0);
  72. }
  73. }
  74. }
  75. spawnBlockByType(type: BlockType) {
  76. let block = null;
  77. switch(type) {
  78. case BlockType.BT_STONE:
  79. block = instantiate(this.cubePrfb);
  80. break;
  81. }
  82. return block;
  83. }
  84. onStartButtonClicked() {
  85. this.curState = GameState.GS_PLAYING;
  86. }
  87. checkResult(moveIndex: number) {
  88. if (moveIndex <= this.roadLength) {
  89. if (this._road[moveIndex] == BlockType.BT_NONE) { //跳到了空方块上
  90. this.curState = GameState.GS_INIT;
  91. }
  92. } else { // 跳过了最大长度
  93. this.curState = GameState.GS_INIT;
  94. }
  95. }
  96. onPlayerJumpEnd(moveIndex: number) {
  97. this.stepsLabel.string = '' + moveIndex;
  98. this.checkResult(moveIndex);
  99. }
  100. // update (deltaTime: number) {
  101. // // Your update function goes here.
  102. // }
  103. }

总结

恭喜您完成了用 Cocos Creator 3D 制作的第一个游戏!在 这里 可以下载完整的工程,希望这篇快速入门教程能帮助您了解 Cocos Creator 3D 游戏开发流程中的基本概念和工作流程。如果您对编写和学习脚本编程不感兴趣,也可以直接从完成版的项目工程中把写好的脚本复制过来使用。

接下来您还可以继续完善游戏的各方各面,以下是一些推荐的改进方向:

  • 为游戏增加难度,当角色在原地停留1秒就算失败
  • 改为无限跑道,动态的删除已经跑过的跑道,延长后面的跑道。
  • 增加游戏音效
  • 为游戏增加结束菜单界面,统计玩家跳跃步数和所花的时间
  • 用更漂亮的资源替换角色和跑道
  • 可以增加一些可拾取物品来引导玩家“犯错”
  • 添加一些粒子特效,例如角色运动时的拖尾、落地时的灰尘
  • 为触屏设备加入两个操作按钮来代替鼠标左右键操作此外如果希望将完成的游戏发布到服务器上分享给好友玩耍,可以阅读 发布工作流 一节的内容。