我有一个问题,我试图解决几种方法,但到目前为止都没有成功。
这个简单的代码是使用blender 2.49:
从场景中删除对象import Blender
import bpy
def removeobj (scn):
for ob in scn.objects:
if ob.type == 'MESH':
scn.objects.unlink (ob)
scn = bpy.context.scene
removeobj(scn)
但是当我按p时没有任何事情发生,当Alt + p属性Error说:'module' object has no attribute context
我该如何解决这个问题?