mirror of
https://github.com/ynput/ayon-core.git
synced 2026-01-02 00:44:52 +01:00
updated docs
This commit is contained in:
parent
ada2cc0f4e
commit
a1a27784ae
2 changed files with 13 additions and 1 deletions
|
|
@ -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 = {}
|
||||
|
|
|
|||
|
|
@ -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
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue