当前位置:网站首页>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 = "空白";
}
}
六、最終效果圖


边栏推荐
- Symbolic representation of functions in deep learning papers
- @Autowired 和 @Resource 的区别
- Arduino JSON data information parsing
- Gateway 根据服务名路由失败,报错 Service Unavailable, status=503
- [offer78] merge multiple ordered linked lists
- Problèmes avec MySQL time, fuseau horaire, remplissage automatique 0
- Latex learning
- Vulnhub target: hacknos_ PLAYER V1.1
- [899]有序队列
- FairyGUI人物状态弹窗
猜你喜欢

JS variable types and common type conversions

Redis 缓存更新策略,缓存穿透、雪崩、击穿问题

Whistle+switchyomega configure web proxy

Unity3d makes the registration login interface and realizes the scene jump

Esp8266 connect onenet (old mqtt mode)

Unity场景跳转及退出

基于Redis的分布式锁 以及 超详细的改进思路

程序设计大作业:教务管理系统(C语言)

Force buckle 1189 Maximum number of "balloons"

FairyGUI摇杆
随机推荐
ESP8266连接onenet(旧版MQTT方式)
MySQL占用内存过大解决方案
Arduino uno R3 register writing method (1) -- pin level state change
(5) Introduction to R language bioinformatics -- ORF and sequence analysis
What is the maximum length of MySQL varchar field
Basic operations of databases and tables ----- modifying data tables
FairyGUI人物状态弹窗
[leetcode19] delete the penultimate node in the linked list
(the first set of course design) 1-4 message passing interface (100 points) (simulation: thread)
(三)R语言的生物信息学入门——Function, data.frame, 简单DNA读取与分析
MySQL时间、时区、自动填充0的问题
VSCode基础配置
Detailed explanation of truncate usage
Working principle of genius telephone watch Z3
JS變量類型以及常用類型轉換
Fashion Gen: the general fashion dataset and challenge paper interpretation & dataset introduction
MySQL時間、時區、自動填充0的問題
Latex learning
C programming exercise
idea中导包方法