Hello everyone,
I’m trying to configure different lists of available software within my studio based on the Task entity type. My goal is to achieve this by creating different entries in the tk-multi-launchapp settings YAML file. I have the following configuration (or something similar):
# Default settings
settings.tk-multi-launchapp:
use_software_entity: true
skip_engine_instances: ["tk-nukestudio"]
[...default settings...]
# Specific settings for 'desktop' context
setting.tk-multi-launchapp.desktop:
use_software_entity: true
skip_engine_instances: ["tk-nukestudio", "tk-nuke", "tk-maya", "tk-houdini"]
# Specific settings for 'shot_step' context
setting.tk-multi-lauchapp.shot_step:
use_software_entity: true
skip_engine_instances: ["tk-maya", "tk-houdini"]
# Specific settings for 'asset_step' context
setting.tk-multi-launchapp.asset_step:
use_software_entity: true
skip_engine_instances: ["tk-nukestudio", "tk-nuke"]
I have set the correct settings entries under tk-shotgun and tk-desktop so that launchapp should follow these paths.
The issue is that launchapp doesn’t seem to be processing the skip_engine_instances list.
Am I missing something, or is there an easier way to achieve this result? Any help is greatly appreciated!
Thanks!