Delphi华容道游戏源码,人物取材于三国传,在DELPHI7下编译通过,Position:array[0..9,0..1] of integer; //用于保存或设置每个Images组件的Left和Top属性 WidthHeight:array[0..9,0..1] of integer; //用于保存每个Images组件的宽度和高度 Images:array[0..9] of TImage;//TImage数组 PrepareMove:Boolean; //用于显示是否准
一个是通过W、A、S、D来移动人物(示例一),另个是按屏幕上的按钮来移动人物(示例二)。很简单,只改了几行代码。
下面是“Assets”文件夹里面的资源。
示例一:
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class E3_07keyboard : MonoBehaviour
{
//动画数组
private Object[] animUp;
privat