当前位置:网站首页>Combination of fairygui check box and progress bar
Combination of fairygui check box and progress bar
2022-07-06 12:42:00 【SQ Liu】
FairyGUI Combination of check box and progress bar
One 、 preparation
1、 New package ProgressBar
You can create a new package based on the previous case .

2、 New component


3、 Import material
Click here to download the material 
Two 、 Progress bar
1、 New progress bar


2、 Fine tune the progress bar

3、 Progress bar running animation
In order to make the progress bar less monotonous , You can add an animation to it . When making the progress bar stretch , The squirrel moves to the right as the progress bar increases . That is, there is such an effect of running with , It looks more vivid .
Set correlation 

3、 ... and 、 A drop-down box
1、 Create a new drop-down box






2、 Set the drop-down box


3、 The drop-down box completes the effect

Four 、 Packaging releases



5、 ... and 、Unity It shows that


6、 ... and 、 coded

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using FairyGUI;
using System;
public class ProgressBar : MonoBehaviour
{
private GComponent mainUI;
private GProgressBar progressBar;
private GComboBox comboBox;
void Start()
{
mainUI = GetComponent<UIPanel>().ui;
progressBar = mainUI.GetChild("n0").asProgress;
progressBar.TweenValue(100, 5); //100 Is the progress to be loaded ,5 It takes time
comboBox = mainUI.GetChild("n4").asComboBox;
comboBox.onChanged.Add(SetCompleteTime);
}
private void SetCompleteTime()
{
progressBar.value = 0; // Each reload sets its progress to 0
progressBar.TweenValue(100, Convert.ToInt32(comboBox.value));
}
}
7、 ... and 、 Final effect




边栏推荐
- Unity3d, Alibaba cloud server, platform configuration
- @The difference between Autowired and @resource
- MySQL replacement field part content
- Game 280 weekly
- Unity3D,阿里云服务器,平台配置
- [899]有序队列
- Whistle+switchyomega configure web proxy
- First use of dosbox
- MySQL时间、时区、自动填充0的问题
- Meanings and differences of PV, UV, IP, VV, CV
猜你喜欢

Unity3D,阿里云服务器,平台配置

JS variable types and common type conversions

MySQL time, time zone, auto fill 0

JS 函数提升和var变量的声明提升

Unity scene jump and exit

Fabrication d'un sac à dos simple fairygui

Symbolic representation of functions in deep learning papers

记一次云服务器被密码爆破的经历——关小黑屋、改密码、改端口
![Intermediate use tutorial of postman [environment variables, test scripts, assertions, interface documents, etc.]](/img/b0/176bf6dea2201afc892d6750c5974b.png)
Intermediate use tutorial of postman [environment variables, test scripts, assertions, interface documents, etc.]

Classification, understanding and application of common methods of JS array
随机推荐
Unity scene jump and exit
NRF24L01 troubleshooting
Unity3D,阿里云服务器,平台配置
Gateway fails to route according to the service name, and reports an error service unavailable, status=503
记一次云服务器被密码爆破的经历——关小黑屋、改密码、改端口
JS variable types and common type conversions
The dolphin scheduler remotely executes shell scripts through the expect command
Special palindromes of daily practice of Blue Bridge Cup
MySQL时间、时区、自动填充0的问题
SVN更新后不出现红色感叹号
(课设第一套)1-4 消息传递接口 (100 分)(模拟:线程)
[leetcode622] design circular queue
ESP8266连接onenet(旧版MQTT方式)
單片機藍牙無線燒錄
Talking about the startup of Oracle Database
Latex learning
Force buckle 1189 Maximum number of "balloons"
Fabrication d'un sac à dos simple fairygui
Flink late data processing (3)
Whistle+switchyomega configure web proxy