Skip to content

Commit

Permalink
add substance designer as applications
Browse files Browse the repository at this point in the history
  • Loading branch information
moonyuet committed Jan 16, 2025
1 parent 82f900b commit 5ada420
Show file tree
Hide file tree
Showing 4 changed files with 29 additions and 0 deletions.
2 changes: 2 additions & 0 deletions client/ayon_applications/constants.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,7 @@
"resolve": "Resolve",
"terminal": "Terminal",
"substancepainter": "Substance Painter",
"substancedesigner": "Substance Designer",
"tvpaint": "TVPaint",
"unreal": "Unreal Editor",
"wrap": "Wrap",
Expand Down Expand Up @@ -55,6 +56,7 @@
"photoshop": "photoshop.png",
"resolve": "resolve.png",
"substancepainter": "substancepainter.png",
"substancedesigner": "substancedesigner.png",
"terminal": "terminal.png",
"tvpaint": "tvpaint.png",
"unreal": "ue4.png",
Expand Down
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
24 changes: 24 additions & 0 deletions server/applications.json
Original file line number Diff line number Diff line change
Expand Up @@ -1036,6 +1036,30 @@
}
]
},
"substancedesigner": {
"enabled": true,
"host_name": "substancedesigner",
"environment": "{}",
"variants": [
{
"name": "2025",
"label": "2025",
"executables": {
"windows": [
"C:\\Program Files\\Adobe\\Adobe Substance 3D Designer\\Adobe Substance 3D Designer.exe"
],
"darwin": [],
"linux": []
},
"arguments": {
"windows": [],
"darwin": [],
"linux": []
},
"environment": "{}"
}
]
},
"unreal": {
"enabled": true,
"host_name": "unreal",
Expand Down
3 changes: 3 additions & 0 deletions server/settings.py
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@
"aftereffects",
"celaction",
"substancepainter",
"substancedesigner",
"unreal",
"wrap",
"openrv",
Expand Down Expand Up @@ -308,6 +309,8 @@ class ApplicationsSettings(BaseSettingsModel):
default_factory=AppGroup, title="Celaction 2D")
substancepainter: AppGroup = SettingsField(
default_factory=AppGroup, title="Substance Painter")
substancedesigner: AppGroup = SettingsField(
default_factory=AppGroup, title="Substance Designer")
unreal: AppGroup = SettingsField(
default_factory=AppGroup, title="Unreal Editor")
wrap: AppGroup = SettingsField(
Expand Down

0 comments on commit 5ada420

Please sign in to comment.