평점 만점의 리뷰가 11,000개 이상
8만 5천명 이상의 리뷰
10만명 이상의 포럼 멤버가 선호하는 에셋
유니티에서 모더레이팅하는 모든 에셋
1 - 10 / 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
Quality assets
Over 11,000 five-star assets
Trusted
Rated by 85,000+ customers
Community support
Supported by 100,000+ forum members