当前位置:   article > 正文

Unity:直接读取数据与通过ScriptableObject对象读取数据性能对比。_unity scriptableobject 读取性能

unity scriptableobject 读取性能
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
using UGFramework;
using UnityEngine.Events;
using System.Diagnostics;

namespace GamePlay
{
    public class NewBehaviourScript : MonoBehaviour
    {
        public WeaponPropertySObj weaponP;
        public int damage = 30;
        public int damage1 = 0;
        public int damage2 = 0;
        public int TIMES = 100000000;

        void Start()
        {
            Normal();
            SO();
        }

        public void ExcuteTime(UnityAction method)
        {
            Stopwatch sw = new Stopwatch();
            sw.Start();
            method();
            sw.Stop();
            UnityEngine.Debug.Log(string.Format("测试方法总共耗时: {0} ms(毫秒)", sw.ElapsedMilliseconds));
        }

        private void Normal()
        {
            print("普通赋值");

            ToolKit.ExcuteTime(() => 
            {
                for (int i = 0; i < TIMES; i++)
                {
                    damage1 = damage;
                }
            });
        }

        private void SO()
        {
            print("so赋值");

            ToolKit.ExcuteTime(() =>
            {
                for (int i = 0; i < TIMES; i++)
                {
                    damage2 = weaponP.damage;
                }
            });
        }
    }
}
  • 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

经过多次对结果进行对比,如下图:
从结果可以看到两种方式的执行效率都差不多。
在这里插入图片描述
在这里插入图片描述
在这里插入图片描述

声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/AllinToyou/article/detail/112522
推荐阅读
相关标签
  

闽ICP备14008679号