blender几何节点报错,有能人能解决嘛
Can't access object's geometry because it's not evaluated yet. This can happen when there is a dependency cycle

blender几何节点报错,有能人能解决嘛
Can't access object's geometry because it's not evaluated yet. This can happen when there is a dependency cycle

关注让阿豪来帮你解答,本回答参考chatgpt3.5编写提供,如果还有疑问可以评论或留言问题描述:在使用Blender的几何节点时,出现报错:Can't access object's geometry because it's not evaluated yet. This can happen when there is a dependency cycle。 解决方法:
import bpy
# 选择要检查的对象
obj = bpy.context.object
# 应用所有变换以强制重新评估几何
bpy.ops.object.transform_apply(location=True, rotation=True, scale=True)