C#小游戏
程序员@大鹏
用编程改变生活
展开
-
C#小游戏之贪吃蛇
贪吃蛇 注意步骤如下 * 1.确定蛇方向 ,wsad键控制 * 2.蛇头/蛇身预设物 * 3.碰撞食物,生成随机食物 设计较为简单,源码如下: using System.Collections; using System.Collections.Generic; using System.Linq; using UnityEngine; us...原创 2019-03-29 10:51:19 · 3248 阅读 · 0 评论 -
C#小游戏之打砖块
打砖块 小游戏可以分为两步: 1.控制移动 2.控制射击 具体代码如下: using System.Collections; using System.Collections.Generic; using UnityEngine; /// <summary> /// 控制左右移动/// </summary> public class Movement : Mono...原创 2019-03-29 11:47:26 · 1698 阅读 · 0 评论