资源简介
网格系统源码
代码片段和文件信息
using UnityEngine;
using System.Collections;
public class GridItem : MonoBehaviour {
//格子
private int colIndex; //列下标
private int rowIndex; //行下标
public float colOffset = 1.375f; //列格子之间的偏移量
public float rowOffset = 0.93f; //行格子之间的偏移量
public Gameobject tip; //保存存有的相应水果提示
// Use this for initialization
void Start () {
}
// Update is called once per frame
void Update () {
}
//设置位置
public voi
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 1018 2016-05-25 18:49 GridItem.cs
----------- --------- ---------- ----- ----
1018 1
- 上一篇:2048游戏完整(学会界面和逻辑解耦)
- 下一篇:我的世界启动器
评论
共有 条评论