Skip to content

Commit

Permalink
Merge pull request #12 from KuntaLowe/main
Browse files Browse the repository at this point in the history
Updated Unreal Engine Deadline Plugin name
  • Loading branch information
ryanmayeda authored Aug 1, 2023
2 parents 93d8f5e + a6ccc19 commit 8e19044
Show file tree
Hide file tree
Showing 42 changed files with 10 additions and 10 deletions.
6 changes: 3 additions & 3 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
.idea/*
docs/build/*
*.pyc
unreal/EpicDeadlineService/Content/Python/Lib/Win64/*
unreal/UnrealDeadlineService/Content/Python/Lib/Win64/*
unreal/MoviePipelineDeadline/Intermediate/*
unreal/MoviePipelineDeadline/Binaries/*
unreal/EpicDeadlineService/Intermediate/*
unreal/EpicDeadlineService/Binaries/*
unreal/UnrealDeadlineService/Intermediate/*
unreal/UnrealDeadlineService/Binaries/*
*.old
2 changes: 1 addition & 1 deletion docs/conf.py
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@

# Code paths for documentation
code_paths = ['../deadline/plugins/UnrealEngine',
'../unreal/EpicDeadlineService/Content/Python',
'../unreal/UnrealDeadlineService/Content/Python',
'../unreal/MoviePipelineDeadline/Content/Python']

for path in code_paths:
Expand Down
2 changes: 1 addition & 1 deletion docs/source/unreal/01-setup.rst
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ To enable the plugin:

The Deadline service depends on the python **urllib3** library. For legal reasons, this library is not packaged with the plugin.
If the python interpreter running in the Editor has this library installed, then no further configuration is needed. Otherwise, you will need
to download *urllib3* via an external source and copy the site packages into the **Content/Python/Lib/<Platform>/** directory in the **EpicDeadlineService** plugin.
to download *urllib3* via an external source and copy the site packages into the **Content/Python/Lib/<Platform>/** directory in the **UnrealDeadlineService** plugin.
("Platform" on a windows operating system is **Win64**). The Editor will automatically load any python libraries in the specified path.

.. image:: _images/unreal_deadline_plugins_browser.png
Expand Down
Binary file not shown.
Binary file not shown.
2 changes: 1 addition & 1 deletion unreal/MoviePipelineDeadline/MoviePipelineDeadline.uplugin
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
"Enabled": true
},
{
"Name": "EpicDeadlineService",
"Name": "UnrealDeadlineService",
"Enabled": true
}
],
Expand Down
2 changes: 1 addition & 1 deletion unreal/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ in the repository.
> **_Note:_**
> This plugin has a dependency on `urllib3` that is not packaged with this
> repository. To resolve this, execute the `requirements.txt` file in the
> `unreal/EpicDeadlineService/Content/Python/Lib` directory and save the `urllib3`
> `unreal/UnrealDeadlineService/Content/Python/Lib` directory and save the `urllib3`
> site packages in the `Win64` directory of the above path.
> The engine will automatically add this library to the Python path and make it
> available to the Python interpreter.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@

# Editor Utility Widget path
# NOTE: This is very fragile and can break if naming or pathing changes
EDITOR_UTILITY_WIDGET = "/EpicDeadlineService/Widgets/DeadlineJobSubmitter"
EDITOR_UTILITY_WIDGET = "/UnrealDeadlineService/Widgets/DeadlineJobSubmitter"


def _launch_job_submitter():
Expand Down
Binary file not shown.
Original file line number Diff line number Diff line change
Expand Up @@ -2,9 +2,9 @@
"FileVersion": 1,
"Version": 1,
"VersionName": "1.0",
"FriendlyName": "Epic Deadline Service",
"FriendlyName": "Unreal Deadline Service",
"Description": "Plugin to interact with Thinkbox Deadline renderfarm. Allows job submissions, queries, and job state updates.",
"Category": "Epic Deadline",
"Category": "AWS Thinkbox Deadline",
"CreatedBy": "Epic Games, Inc.",
"CreatedByURL" : "http://www.epicgames.com",
"DocsURL": "",
Expand Down

0 comments on commit 8e19044

Please sign in to comment.