mirror of
https://github.com/ynput/ayon-core.git
synced 2025-12-25 05:14:40 +01:00
🎨 add 3dequalizer support to applications addon
This commit is contained in:
parent
2a74bf1d40
commit
2d0c106238
4 changed files with 25 additions and 1 deletions
BIN
client/ayon_core/resources/app_icons/3de4.png
Normal file
BIN
client/ayon_core/resources/app_icons/3de4.png
Normal file
Binary file not shown.
|
After Width: | Height: | Size: 16 KiB |
|
|
@ -1,3 +1,3 @@
|
|||
name = "applications"
|
||||
title = "Applications"
|
||||
version = "0.2.0"
|
||||
version = "0.2.1"
|
||||
|
|
|
|||
|
|
@ -1271,6 +1271,28 @@
|
|||
}
|
||||
]
|
||||
},
|
||||
"equalizer": {
|
||||
"enabled": true,
|
||||
"label": "3DEqualizer",
|
||||
"icon": "{}/app_icons/zbrush.png",
|
||||
"host_name": "equalizer",
|
||||
"environment": "{}",
|
||||
"variants": [
|
||||
{
|
||||
"name": "7-1v2",
|
||||
"label": "7.1v2",
|
||||
"use_python_2": false,
|
||||
"executables": {
|
||||
"windows": [
|
||||
"C:\\Program Files\\3DE4_win64_r7.1v2\\bin\\3DE4.exe"
|
||||
],
|
||||
"darwin": [],
|
||||
"linux": []
|
||||
},
|
||||
|
||||
}
|
||||
]
|
||||
},
|
||||
"additional_apps": []
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -190,6 +190,8 @@ class ApplicationsSettings(BaseSettingsModel):
|
|||
default_factory=AppGroupWithPython, title="OpenRV")
|
||||
zbrush: AppGroup = SettingsField(
|
||||
default_factory=AppGroupWithPython, title="Zbrush")
|
||||
equalizer: AppGroup = SettingsField(
|
||||
default_factory=AppGroupWithPython, title="3DEqualizer")
|
||||
additional_apps: list[AdditionalAppGroup] = SettingsField(
|
||||
default_factory=list, title="Additional Applications")
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue