Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add BorisFX Mocha Pro #46

Merged
merged 6 commits into from
Jan 27, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions client/ayon_applications/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -35,6 +35,7 @@
"unreal": "Unreal Editor",
"wrap": "Wrap",
"zbrush": "Zbrush",
"mochapro": "Mocha Pro",
}
ICONS_BY_GROUP_NAME = {
"adsk_3dsmax": "3dsmax.png",
Expand Down Expand Up @@ -66,4 +67,5 @@
"unreal": "ue4.png",
"wrap": "wrap.png",
"zbrush": "zbrush.png",
"mochapro": "mochapro.png",
}
Binary file added client/ayon_applications/icons/mochapro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Binary file added public/icons/mochapro.png
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
58 changes: 58 additions & 0 deletions server/applications.json
Original file line number Diff line number Diff line change
Expand Up @@ -1401,6 +1401,64 @@
}
]
},
"mochapro": {
"enabled": true,
"host_name": "mochapro",
"environment": "{}",
"variants": [
{
"name": "12-0-0",
"label": "2025",
antirotor marked this conversation as resolved.
Show resolved Hide resolved
"executables": {
"windows": [
"C:\\Program Files\\BorisFX\\Mocha Pro 2025\\bin\\mochapro.exe"
],
"darwin": [],
"linux": []
},
"arguments": {
"windows": [],
"darwin": [],
"linux": []
},
"environment": "{}"
},
{
"name": "11-5-0",
"label": "2024.5",
"executables": {
"windows": [
"C:\\Program Files\\BorisFX\\Mocha Pro 2024.5\\bin\\mochapro.exe"
],
"darwin": [],
"linux": []
},
"arguments": {
"windows": [],
"darwin": [],
"linux": []
},
"environment": "{}"
},
{
"name": "8-0-0",
"label": "2021",
"executables": {
"windows": [
"C:\\Program Files\\BorisFX\\Mocha Pro 2021\\bin\\mochapro.exe"
],
"darwin": [],
"linux": []
},
"arguments": {
"windows": [],
"darwin": [],
"linux": []
},
"environment": "{}"
}
]
},
"additional_apps": []
}
}
2 changes: 2 additions & 0 deletions server/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,6 +27,7 @@
"unreal": "Unreal Editor",
"wrap": "Wrap",
"zbrush": "Zbrush",
"mochapro": "Mocha Pro",
}
ICONS_BY_GROUP_NAME = {
"adsk_3dsmax": "3dsmax.png",
Expand Down Expand Up @@ -55,4 +56,5 @@
"unreal": "ue4.png",
"wrap": "wrap.png",
"zbrush": "zbrush.png",
"mochapro": "mochapro.png",
}
5 changes: 4 additions & 1 deletion server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -47,7 +47,8 @@
"cinema4d",
"silhouette",
"terminal",
"premiere"
"premiere",
"mochapro",
}


Expand Down Expand Up @@ -330,6 +331,8 @@ class ApplicationsSettings(BaseSettingsModel):
default_factory=AppGroup, title="Motion Builder")
cinema4d: AppGroup = SettingsField(
default_factory=AppGroup, title="Cinema4D")
mochapro: AppGroup = SettingsField(
default_factory=AppGroup, title="Mocha Pro")
silhouette: AppGroup = SettingsField(
default_factory=AppGroup, title="BorisFX Silhouette")
terminal: AppGroup = SettingsField(
Expand Down
Loading