当前位置:网站首页>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




边栏推荐
- Programming homework: educational administration management system (C language)
- The master of double non planning left the real estate company and became a programmer with an annual salary of 25W. There are too many life choices at the age of 25
- NRF24L01故障排查
- [Offer18]删除链表的节点
- (课设第一套)1-5 317号子任务 (100 分)(Dijkstra:重边自环)
- Learning notes of JS variable scope and function
- Database table splitting strategy
- Force buckle 1189 Maximum number of "balloons"
- [golang] leetcode intermediate - fill in the next right node pointer of each node & the k-smallest element in the binary search tree
- Pat 1097 duplication on a linked list (25 points)
猜你喜欢
随机推荐
(五)R语言入门生物信息学——ORF和序列分析
[Clickhouse kernel principle graphic explanation] about the collaborative work of partitioning, indexing, marking and compressed data
Gateway 根据服务名路由失败,报错 Service Unavailable, status=503
Unity3D摄像机,键盘控制前后左右上下移动,鼠标控制旋转、放缩
Fabrication of fairygui simple Backpack
Redis cache update strategy, cache penetration, avalanche, breakdown problems
关于Gateway中使用@Controller的问题
Office提示您的许可证不是正版弹框解决
Guided package method in idea
Servlet
Learning notes of JS variable scope and function
Page performance optimization of video scene
By v$rman_ backup_ job_ Oracle "bug" caused by details
MySQL replacement field part content
SVN更新后不出现红色感叹号
單片機藍牙無線燒錄
NRF24L01 troubleshooting
Unity3D,阿里云服务器,平台配置
Office prompts that your license is not genuine pop-up box solution
History object









