Unity3D 查找Update函数体为空的类

Posted MrBlue

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Unity3D 查找Update函数体为空的类相关的知识,希望对你有一定的参考价值。

如果是大项目,有很多Update空跑还是多少有些效率损耗,那我们就把他们都找出来。

先引用Mono.Cecil

 

//代码

using UnityEngine;
using UnityEditor;
using System.Collections;
using System.IO;
using System.Collections.Generic;
using System.Text;

//处理UILabel
public class EmptyUpdateCleaner
{

	[MenuItem("Tools/Log Empty Update")]
	public static void Test()
	{
		string log = "";
		var module = Mono.Cecil.ModuleDefinition.ReadModule(Application.dataPath+ "/../Temp/UnityVS_bin/Debug/Assembly-CSharp.dll");
		foreach (var type in module.Types)
		{
			if (null==type.BaseType)
			{
				continue;
			}

			if (!type.BaseType.Name.Contains("MonoBehaviour"))
			{
				continue;
			}

			foreach (var method in type.Methods)
			{
				if (method.Name.Equals("Update"))
				{
					if (method.Body.Instructions.Count <= 2)
					{
						log += type.Name + "."+method.Name + "\n";						
					}
				}
				else if (method.Name.Equals("LateUpdate"))
				{
					if (method.Body.Instructions.Count <= 2)
					{
						log += type.Name + "." + method.Name + "\n";
					}
				}
				else if (method.Name.Equals("FixedUpdate"))
				{
					if (method.Body.Instructions.Count <= 2)
					{
						log += type.Name + "." + method.Name + "\n";
					}
				}
			}
		}
		Debug.Log(log);
	}

	
	
}

  

以上是关于Unity3D 查找Update函数体为空的类的主要内容,如果未能解决你的问题,请参考以下文章

@ApiResponse 响应体为空(Spring Boot)

查找数组字段不为空的 MongoDB 记录

查找数组字段不为空的 MongoDB 记录

查找数组字段不为空的 MongoDB 记录

查找数组字段不为空的 MongoDB 记录

查找数组字段不为空的 MongoDB 记录