欢迎来到代码驿站!

.NET代码

当前位置:首页 > 软件编程 > .NET代码

Unity3D实现列表分页效果

时间:2020-11-14 11:52:11|栏目:.NET代码|点击:

本文实例为大家分享了Unity3D实现列表分页效果的具体代码,供大家参考,具体内容如下

using System.Collections.Generic;
using UnityEngine;
 
public class Page : MonoBehaviour {
  public List<string> Tips = new List<string>();
  public Texture2D DetailImg1;
  public Texture2D DetailImg2;
 
  private int pageCount = 0;//当前记录所需页数
  private static int currentPage = 1;//当前页码
 
  void OnGUI() {
    pageCount = Mathf.CeilToInt(Tips.Count / 8.0f);//计算当前的页码总数
    int m_count = 0;//计算当前页的记录数
    if (currentPage != pageCount)//判断是否是最后一页,若不是则每页绘制8条记录
    {
      m_count = 8;
    }
    else {
      if (Mathf.CeilToInt((Tips.Count + 1) / 8.0f) > pageCount)//判断最后一页是否有8条记录
      {
        m_count = 8;
      }
      else
      {
        m_count = Tips.Count % 8;//计算最后一页的记录数
      }
    }
 
    for (int i = 0; i < m_count; i++)
    {
      if (i % 2 == 0)
      {
        GUI.DrawTexture(new Rect(268, 253 + i * 36, 487, 36), DetailImg1);
      }
      else
      {
        GUI.DrawTexture(new Rect(268, 253 + i * 36, 487, 36), DetailImg2);
      }
      GUI.Label(new Rect(310, 253 + i * 36, 300, 36), Tips[(currentPage - 1) * 8 + i]);
    }
    //超过一页内容时,显示页码跳转
    if (pageCount > 1) {
      float temp = Screen.width / 2 - pageCount / 2 * 20;
      for (int i = 1; i <= pageCount; ++i) {
        //更改按钮样式
        if (currentPage == i)
        {
          GUI.backgroundColor = Color.red;
        }
        else
        {
          GUI.backgroundColor = Color.white;
        }
        //绘制按钮
        if (GUI.Button(new Rect(temp + 20 * i, 600, 20, 20), i.ToString())) {
          currentPage = i;//更改当前选中的页
        }
      }
    }
  }
}

上一篇:C#中如何使用redis

栏    目:.NET代码

下一篇:从客户端检测到有潜在危险的Request.Form值的asp.net代码

本文标题:Unity3D实现列表分页效果

本文地址:http://www.codeinn.net/misctech/22420.html

推荐教程

广告投放 | 联系我们 | 版权申明

重要申明:本站所有的文章、图片、评论等,均由网友发表或上传并维护或收集自网络,属个人行为,与本站立场无关。

如果侵犯了您的权利,请与我们联系,我们将在24小时内进行处理、任何非本站因素导致的法律后果,本站均不负任何责任。

联系QQ:914707363 | 邮箱:codeinn#126.com(#换成@)

Copyright © 2020 代码驿站 版权所有