我正在一个项目中使用 Blender python。我有两个文件:one.py 和two.py 我需要将 one.py 导入到 Two.py 中。我试过了
from . import one
from one import *
但是两者都不起作用。在搅拌机Python脚本中导入其他文件的正确方法是什么
使用 .as_module() 方法。
Text_01 包含:
fruit = "apple"
Text_02 包含:
import bpy
text_01 = bpy.data.texts['Text_01'].as_module()
print(text_01.fruit)