-
Notifications
You must be signed in to change notification settings - Fork 75
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #131 from threedworld-mit/urdf
Urdf
- Loading branch information
Showing
15 changed files
with
1,368 additions
and
95 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
# `asset_bundle_creator_base.py` | ||
|
||
## `AssetBundleCreatorBase(ABC)` | ||
|
||
`from tdw.asset_bundle_creator_base import AssetBundleCreatorBase` | ||
|
||
Base class for creating asset bundles. | ||
|
||
*** | ||
|
||
#### `__init__(self, quiet: bool = False, display: str = ":0")` | ||
|
||
|
||
| Parameter | Description | | ||
| --- | --- | | ||
| quiet | If true, don't print any messages to console. | | ||
| display | The display to launch Unity Editor on. Ignored if this isn't Linux. | | ||
|
||
*** | ||
|
||
#### `get_base_unity_call(self) -> List[str]` | ||
|
||
_Returns:_ The call to launch Unity Editor silently in batchmode, execute something, and then quit. | ||
|
||
*** | ||
|
||
#### `get_editor_path() -> Path` | ||
|
||
_This is a static function._ | ||
|
||
Build the asset_bundle_creator Unity project. | ||
|
||
_Returns:_ The path to the asset_bundle_creator Unity project. | ||
|
||
*** | ||
|
||
#### `get_unity_project(self) -> Path` | ||
|
||
Build the asset_bundle_creator Unity project. | ||
|
||
_Returns:_ The path to the asset_bundle_creator Unity project. | ||
|
||
*** | ||
|
||
#### `get_project_path() -> Path` | ||
|
||
_Returns:_ The expected path of the Unity project. | ||
|
||
*** | ||
|
Oops, something went wrong.