Shuvit game release repo.
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

refresh_scripts.py 319B

123456789
  1. reload_on = False #reload from external file or save all from internal
  2. import bpy
  3. area = bpy.context.area
  4. for text in bpy.data.texts:
  5. area.spaces[0].text = text
  6. if text.filepath != '' and reload_on == True:
  7. bpy.ops.text.reload()
  8. if text.filepath != '' and text.is_dirty:
  9. bpy.ops.text.save()