Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我的任务是为给定的样本大小渲染图像。首先,我在 pyrender 场景中添加 5 个网格,渲染图像,然后从场景中移除网格。对于给定的样本大小,继续此迭代。但是,在第二个循环中,我收到了这个错误 ValueError: Mesh is already bound to a context
ValueError: Mesh is already bound to a context
谁能帮我理解这个错误的含义以及如何纠正这个错误?谢谢你。
我也遇到这个问题。我认为这是因为您已将此网格添加到渲染器中。之后,如果您删除网格,网格仍然以某种方式更改(这是“绑定到上下文”)
在我的代码中,我的解决方案是重新加载网格文件。
那会好的。