Flash / Actionscript CPU profiler

后端 未结 9 780
没有蜡笔的小新
没有蜡笔的小新 2020-12-14 03:06

Have you found such a tool and used it successfully?

9条回答
  •  隐瞒了意图╮
    2020-12-14 03:52

    I have found The Miner to be very useful, and it's free for non-commercial projects. It has a wide range of features but the tab labelled "Performance Profiler" has been the most helpful. I find that it's a great way to find bottlenecks in your code, or at least know what the main cause is (Rendering, Text, Network, etc..).

    It took me a bit to find the installation instructions, but it's pretty simple. Include the .swc file in your project, then add 1 line of code in your document class constructor.

    this.addChild(new TheMiner(true));
    

    More info: http://www.sociodox.com/theminer/support.html

提交回复
热议问题