Python 挂钩内存以了解已使用的字节数
我想挂钩内存以了解用于在游戏中创建世界对象的字节数,以便为我提供一些信息来更新加载进度条
I want to hook the memory to know the number of bytes used to create the World objects in my game so as to give me some information to update the loading progressbar
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
实现进度条的一个简单方法是在每次加载另一个对象时增加进度。根据您必须加载的对象数量,该对象可能足够精细,并且非常容易实现。
A simple way to implement a progress bar is by incrementing the progress every time you load another object. Depending on how many objects you have to load that may be granular enough, and is very easy to implement.