当前位置:   article > 正文

Unity实现场景加载进度条_unity加载场景进度条

unity加载场景进度条

1、效果展示

进度条

2、场景搭建

搭建场景

3、代码

1、SceneNameDrawer.cs:实现可以选择你想要切换的场景,避免手动输入错误

using UnityEngine; // 引入Unity引擎命名空间
using UnityEditor; // 引入Unity编辑器命名空间
using System.Linq; // 引入LINQ命名空间,用于处理集合

public class SceneNameAttribute : PropertyAttribute { } // 场景名称属性,继承自PropertyAttribute

#if UNITY_EDITOR // 编译指令,如果是在Unity编辑器中编译则进入下面的代码块
[CustomPropertyDrawer(typeof(SceneNameAttribute))] // 自定义属性绘制器,指定处理SceneNameAttribute属性
public class SceneNameDrawer : PropertyDrawer // 场景名称绘制器,继承自PropertyDrawer
{
    public override void OnGUI(Rect position, SerializedProperty property, GUIContent label) // 重写PropertyDrawer类的OnGUI方法
    {
        // 获取Build Settings中的所有场景,过滤掉路径为空的场景并提取场景名称,生成场景名称数组
        var scenes = EditorBuildSettings.scenes
            .Where(s => !string.IsNullOrEmpty(s.path))
            .Select(s => System.IO.Path.GetFileNameWithoutExtension(s.path))
            .ToArray();

        // 获取当前序列化属性的值,查找其在场景名称数组中的索引
        var index = Mathf.Max(0, System.Array.IndexOf(scenes, property.stringValue));

        // 在编辑器中绘制一个弹出式下拉菜单,用于选择场景
        EditorGUI.BeginChangeCheck(); // 开始检查编辑器UI是否发生了变化
        index = EditorGUI.Popup(position, label.text, index, scenes); // 绘制弹出式下拉菜单
        if (EditorGUI.EndChangeCheck()) // 如果编辑器UI发生了变化
        {
            property.stringValue = scenes[index]; // 更新序列化属性的值
        }
    }
}
#endif // 结束编译指令
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31

2、进度条.cs:实现进度条滚动

using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UnityEngine.UI;
using UnityEngine.SceneManagement;

public class 进度条 : MonoBehaviour
{
    public Slider slider;

    public GameObject startButton;

    public bool really = true;//是否是真实的加载

    [SceneName]
    public string sceneName; //你想要切换的场景

    private float currentProgress;//当前进度

    private float loadingTime = 2;//虚假的加载时间

    private AsyncOperation operation;

    // Start is called before the first frame update
    void Start()
    {
        startButton.SetActive(false);

        startButton.GetComponent<Button>().onClick.AddListener(OnStartButtonClick);

        currentProgress = 0;

        slider.value = currentProgress;

        if (really)
        {
            operation = SceneManager.LoadSceneAsync(sceneName);
            operation.allowSceneActivation = false;
        }
    }

    // Update is called once per frame
    void Update()
    {
        if (!really)
        {
            currentProgress += Time.deltaTime / loadingTime;
            if (currentProgress > 1)
            {
                currentProgress = 1;
            }
        }
        else
        {
            currentProgress = Mathf.Clamp01(operation.progress / 0.9f);
        }
        OnSliderValueChange(currentProgress);
    }

    private void OnStartButtonClick()
    {
        if (!really)
        {
            SceneManager.LoadScene(sceneName);
        }
        else
        {
            operation.allowSceneActivation = true;
        }
    }

    private void OnSliderValueChange(float value)//改变滑动条的值
    {
        slider.value = value;
        if (value >= 1)
        {
            startButton.SetActive(true);
        }
    }
}
  • 1
  • 2
  • 3
  • 4
  • 5
  • 6
  • 7
  • 8
  • 9
  • 10
  • 11
  • 12
  • 13
  • 14
  • 15
  • 16
  • 17
  • 18
  • 19
  • 20
  • 21
  • 22
  • 23
  • 24
  • 25
  • 26
  • 27
  • 28
  • 29
  • 30
  • 31
  • 32
  • 33
  • 34
  • 35
  • 36
  • 37
  • 38
  • 39
  • 40
  • 41
  • 42
  • 43
  • 44
  • 45
  • 46
  • 47
  • 48
  • 49
  • 50
  • 51
  • 52
  • 53
  • 54
  • 55
  • 56
  • 57
  • 58
  • 59
  • 60
  • 61
  • 62
  • 63
  • 64
  • 65
  • 66
  • 67
  • 68
  • 69
  • 70
  • 71
  • 72
  • 73
  • 74
  • 75
  • 76
  • 77
  • 78
  • 79
  • 80
声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/羊村懒王/article/detail/102673
推荐阅读
相关标签
  

闽ICP备14008679号