21 lines
754 B
Python
21 lines
754 B
Python
import bpy
|
|
|
|
## CONFIGURATION ##
|
|
render_api = 'OPTIX' # NONE, CUDA, OPTIX, HIP, ONEAPI
|
|
hostname = 'http://localhost:8080/'
|
|
|
|
# LEGACY - Flamenco addon install, intended for Blender 4.1 and older
|
|
# addon_path = '/home/user/git/flamenco-env/workspace/flamenco-addon.zip'
|
|
# bpy.ops.preferences.addon_install(overwrite=True, filepath=addon_path)
|
|
# bpy.ops.preferences.addon_enable(module="flamenco")
|
|
|
|
## SETUP PREFS ##
|
|
bpy.context.preferences.addons["cycles"].preferences.compute_device_type = render_api
|
|
bpy.context.preferences.addons["flamenco"].preferences.manager_urlz = hostname
|
|
bpy.context.preferences.filepaths.use_scripts_auto_execute = True # Enable for Rigify
|
|
|
|
bpy.ops.wm.save_userpref()
|
|
|
|
# Exit blender now that we're done
|
|
bpy.ops.wm.quit_blender()
|