You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
This is not for requesting support for new games/applications
To do this you should go to https://github.com/CubeCoders/AMPTemplates and first attempt to build a configuration yourself - otherwise you can request a template from this repo.
Feature Request
Feature Information:
It would helpful for the App.WorkingDir setting in the Generic module if:
variables could be included in the path. This would be particularly useful for templates like Node and Python App Runner where it cannot be predicted in advance what is the needed working dir for the particular app (some won't run unless the working dir is properly set to a subdir, as their code uses relative paths)
there were separate settings for Windows and Linux. Some servers, particularly UE servers, have different binary paths and as a consequence also need different working dirs
I confirm:
that I have searched for an existing feature request matching the description.
The text was updated successfully, but these errors were encountered:
Variables are now included but splitting it out into separate settings is a mild pain.
What I could though is significantly expand the templates system to allow a little more complexity. For example instead of just being {{$SettingName}} it could be something richer like {{Linux:Value}}{{Windows:$SettingName}} and it'd skip any that didn't apply to the current platform, subbing in either the value verbatim or the setting name as appropirate.
I've implemented this as above. You can use either values (without the $) or setting references (with the $) and it'll honour the platform prefix, omitting it entirely if it's the wrong platform. There's also {{All:$Whatever}} for completeness sake because of how the platform enum works but it's not needed - it's fully backwards compatible.
This is not for requesting support for new games/applications
To do this you should go to https://github.com/CubeCoders/AMPTemplates and first attempt to build a configuration yourself - otherwise you can request a template from this repo.
Feature Request
Feature Information:
It would helpful for the
App.WorkingDir
setting in the Generic module if:I confirm:
The text was updated successfully, but these errors were encountered: