updated docs

This commit is contained in:
Ondrej Samohel 2020-03-17 00:01:35 +01:00
parent ada2cc0f4e
commit a1a27784ae
No known key found for this signature in database
GPG key ID: 8A29C663C672C2B7
2 changed files with 13 additions and 1 deletions

View file

@ -13,7 +13,17 @@ def get_engine_versions():
Location can be overridden by `UNREAL_ENGINE_LOCATION` environment
variable.
Returns dictionary with version as a key and dir as value.
Returns:
dict: dictionary with version as a key and dir as value.
Example:
>>> get_engine_version()
{
"4.23": "C:/Epic Games/UE_4.23",
"4.24": "C:/Epic Games/UE_4.24"
}
"""
try:
engine_locations = {}

View file

@ -2,8 +2,10 @@ from avalon import api
class Creator(api.Creator):
"""This serves as skeleton for future Pype specific functionality"""
pass
class Loader(api.Loader):
"""This serves as skeleton for future Pype specific functionality"""
pass