11000+款5星资源
8.5万+用户参与评分
10万+社区成员鼎力支持
每款资源都经过 Unity 审核
显示 1 - 10 of 19
用户评论
排序
C
This is not working on Oculus GO
8 years ago
ChosenZeus基于版本1.3.7
I can find no support contact information. Can you please let me know where to reach out for support on this?
Shows up in play testing in editor but no display on android build for Oculus go.
这条评论是否有帮助?
1
2
来自发布商的回复:
回复时间 8 years ago
VR functionality isn't supported yet. Please use the support forum link above for support questions.
c
Fantastic utility, but has some bugs and could improve on GC allocations
8 years ago
chetan51基于上一个版本 1.3.6
This utility is super useful for measuring detailed performance stats on device. But given that it will be used for performance optimization, you really don't want your measuring tool to be actually affecting the measurements. The problem is, the graph generates too much garbage, and therefore interferes with measurements.
Fortunately, you can get around this. Replace the following code in the `Scroll` function in `StatsMonitorWidget.cs`:
texture.SetPixels(0, 0, texture.width - x, texture.height,
texture.GetPixels(x, 0, texture.width - x, texture.height));
...with the following code:
for (int i = 0; i < texture.width - x; i++) {
for (int j = 0; j < texture.height; j++) {
texture.SetPixel(i, j, texture.GetPixel(x + i, j));
}
}
...and set "Objects Count Interval" setting to 0 (because measuring the number of objects creates garbage).
You can also set "GC Monitoring Enabled" to true (it doesn't generate any garbage).
If the above optimization was part of the official asset's code, and the above two settings were the default values, then my rating would be 5 stars instead of 4. But after making those changes myself, I'm very happy with this stats monitor!
Edit: I just discovered that the FPS graph is completely wrong. It stays stuck at the top of the graph no matter what the FPS is. Fortunately, you can fix it by changing the following code in the `Update` function in `StatsMonitorWidget.cs`:
_graph.SetPixel(_graphStartX, Mathf.Min(_graphMaxY, ((_widget.fps / (_widget.fpsMax > 60 ? _widget.fpsMax : 60)) * _graphMaxY) - 1), _widget.colorFPS);
...with the following code:
_graph.SetPixel(_graphStartX, Mathf.Min(_graphMaxY, ((float)_widget.fps / Mathf.Max(_widget.fpsMax, 60)) * _graphMaxY), _widget.colorFPS);
For this bug, I reduced my rating from 4 stars to 3. But if all the above was fixed in the official code, I'll increase my rating to 5.
这条评论是否有帮助?
3
0
来自发布商的回复:
回复时间 8 years ago
Hi, thanks for your improvement suggestions! An update with the fixes included is on the way.
The asset is good, it's doing the job, but the graph generate a litle too much garbage, it's not really a problem but the asset would be perfect with 0 GC.
这条评论是否有帮助?
2
0
来自发布商的回复:
回复时间 8 years ago
The GC is actually caused by the C# call to measure GC counts. In the upcoming update (1.3.6) I added an option to toggle GC monitoring and it's turned off by default. Hth!
j
Breaks Unity Compiler / Author Can't Be Reached
9 years ago
johnnyjacques基于上一个版本 1.3.5
Though this seemed to be a promising asset, it doesn't work and causes the compile to lock up on Window 5.6.1. I figured just needed to be updated, and sent a message to the author though the email bounced. Not sure if this has been abandoned
这条评论是否有帮助?
0
0
来自发布商的回复:
回复时间 8 years ago
Sorry for the long delay and silence! I finally submitted a new version that fixes the crash issue.
Currently, it is broken with Unity 5.6+.
It is not recommended to purchase this to use with newer Unity versions, or if you expect prompt support.
I have patched the latest version to work with new Unity versions, but the developer is missing since April and isn't responding to support requests (I sent him the patch a few months ago).
The implementation is quite simple to use and the asset itself is very good. It's cheap too. So, if you're using Unity <5.6 or you can fix it yourself, it is very much worth it. If you need it, message me in the forums and I'll send a diff with my patches for you to apply on your purchased copy (need clean copy from the store, without letting Unity update with its script updater).
Note: review will be updated if/when the developer is active again. This does not reflect the quality of the asset itself (which is pretty good), just its current state (which is pretty bad).
这条评论是否有帮助?
2
0
高品质资源
11000+款5星资源
深受用户信赖
8.5万+用户参与评分
强大的社区支持
10万+社区成员鼎力支持