本文主要是介绍Unity3D实时显示FPS(移动端测试神器),希望对大家解决编程问题提供一定的参考价值,需要的开发者们随着小编来一起学习吧!
废话不多说,直接上代码。挂在Main Camera上就OK。
using System.Collections;
using System.Collections.Generic;
using UnityEngine;
public class FPSCounter : MonoBehaviour {
// Attach this to a GUIText to make a frames/second indicator.
// It calculates frames/second over each updateInterval,
// so the display does not keep changing wildly.
// It is
这篇关于Unity3D实时显示FPS(移动端测试神器)的文章就介绍到这儿,希望我们推荐的文章对编程师们有所帮助!