当前位置:网站首页>FairyGUI簡單背包的制作
FairyGUI簡單背包的制作
2022-07-06 12:38:00 【SQ劉】
FairyGUI簡單背包的制作
效果預覽:
一、創建新項目
重命名一下
二、制作背包彈窗
1、新建背包的容器組件(BagWindow)
2、新建窗口框架組件(WindowFrame)
3、導入素材資源
4、在WindowFrame中操作
(1)拖入背包的背景
並將n0重命名為BG(即背包背景)
(2)新建關閉按鈕(ButtonClose)
(3)新建圖形作為一個占比特(dragArea——拖拽區域)
5、在BagWindow中操作
(1)將WindowFrame拖入BagWindow,並設置其組件大小
(2)拖入列錶承載遊戲物體
(3)在列錶中制作格子——新建按鈕Item
(4)編輯Item
拖入背景圖
拖入Title
拖入裝載器
6、在Main中操作
(1)制作圖片顯示按鈕ItemView
(2)對ItemView做一些完善
(3)新建背包彈窗按鈕BagButton
(4)雙擊BagButton按鈕對它進行編輯
7、回到BagWindow,對其賦值
重命名,做一些小小的更改。
三、打包導出發布
四、Unity中顯示
1、新建Unity項目
2、下載資源商店裏的FairyGUI
下載後導入時,需要注意一下,要把Examples下面的Bag删除掉。因為之前導入的時候就是沒有删除,導致後面出現一些奇奇怪怪的現象。
3、Unity中顯示
五、代碼控制
1、新建兩個脚本
一個是背包彈窗脚本BagWindow,一個是主要脚本Bag。
2、編輯脚本
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using FairyGUI;
public class BagWindow : Window
{
public BagWindow()
{
}
protected override void OnInit()
{
this.contentPane = UIPackage.CreateObject("Bag", "BagWindow").asCom;
}
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using FairyGUI;
public class Bag : MonoBehaviour
{
private GComponent mainUI;
private GButton playerView;
private BagWindow bagWindow;
void Start()
{
mainUI = GetComponent<UIPanel>().ui;
playerView = mainUI.GetChild("playerView").asButton;
playerView.onClick.Add(UseItem);
bagWindow = new BagWindow();
mainUI.GetChild("bagButton").onClick.Add(() => {
bagWindow.Show(); });
}
// Update is called once per frame
void Update()
{
}
private void UseItem()
{
}
}
3、運行效果
4、加載背包裏的內容
(1)更改一下BagWindow裏的列錶名字:itemList,以及ItemView裏的title,並重新發布
(2)繼續編碼實現功能
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using FairyGUI;
public class BagWindow : Window
{
private GList list;
private GButton playerView;
public BagWindow(GButton targetButton)
{
playerView = targetButton;
}
protected override void OnInit()
{
this.contentPane = UIPackage.CreateObject("Bag", "BagWindow").asCom;
list = this.contentPane.GetChild("itemList").asList;
list.itemRenderer = RenderListItem;
list.numItems = 20;
for (int i = 0; i < list.numItems - 10; i++)
{
GButton button = list.GetChildAt(i).asButton;
button.onClick.Add(() => {
ClickItem(button); });
}
}
private void RenderListItem(int index, GObject obj)
{
GButton button = obj.asButton;
button.icon = UIPackage.GetItemURL("Bag", "i" + index);
button.title = index.ToString();
}
private void ClickItem(GButton button)
{
playerView.title = button.title;
playerView.icon = button.icon;
}
}
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using FairyGUI;
public class Bag : MonoBehaviour
{
private GComponent mainUI;
private GButton playerView;
private BagWindow bagWindow;
void Start()
{
mainUI = GetComponent<UIPanel>().ui;
playerView = mainUI.GetChild("playerView").asButton;
playerView.onClick.Add(UseItem);
bagWindow = new BagWindow(playerView);
bagWindow.SetXY(121, 63); //設置背包彈窗出現的初始比特置
mainUI.GetChild("bagButton").onClick.Add(() => {
bagWindow.Show(); });
}
private void UseItem()
{
playerView.icon = null;
playerView.title = "空白";
}
}
六、最終效果圖
边栏推荐
- Naive Bayesian theory derivation
- 程序设计大作业:教务管理系统(C语言)
- Mysqldump error1066 error solution
- Arduino get random number
- By v$rman_ backup_ job_ Oracle "bug" caused by details
- CUDA C programming authoritative guide Grossman Chapter 4 global memory
- How to add music playback function to Arduino project
- Servlet
- (课设第一套)1-5 317号子任务 (100 分)(Dijkstra:重边自环)
- Redis based distributed locks and ultra detailed improvement ideas
猜你喜欢
Postman 中级使用教程【环境变量、测试脚本、断言、接口文档等】
Basic operations of databases and tables ----- creating data tables
Redis based distributed ID generator
Teach you to release a DeNO module hand in hand
Redis 缓存更新策略,缓存穿透、雪崩、击穿问题
MySQL time, time zone, auto fill 0
C programming exercise
Redis based distributed locks and ultra detailed improvement ideas
Remember an experience of ECS being blown up by passwords - closing a small black house, changing passwords, and changing ports
MySQL時間、時區、自動填充0的問題
随机推荐
Working principle of genius telephone watch Z3
Stm32f1+bc20+mqtt+freertos system is connected to Alibaba cloud to transmit temperature and humidity and control LED lights
In 2020, the average salary of IT industry exceeded 170000, ranking first
Gateway fails to route according to the service name, and reports an error service unavailable, status=503
Arduino gets the length of the array
What is the maximum length of MySQL varchar field
idea中导包方法
js题目:输入数组,最大的与第一个元素交换,最小的与最后一个元素交换,输出数组。
Teach you to release a DeNO module hand in hand
JUC forkjoin and completable future
NRF24L01 troubleshooting
Esp8266 uses Arduino to connect Alibaba cloud Internet of things
[Red Treasure Book Notes simplified version] Chapter 12 BOM
如何给Arduino项目添加音乐播放功能
C programming exercise
2022.2.12 resumption
[offer9]用两个栈实现队列
1081 rational sum (20 points) points add up to total points
Esp8266 connect onenet (old mqtt mode)
Detailed explanation of truncate usage