-
Notifications
You must be signed in to change notification settings - Fork 217
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 #1222 from allenai/ab-agent-simplifiedExtendJoints…
…-w-fpin Ab agent simplified extend joints w fpin
- Loading branch information
Showing
348 changed files
with
36,172 additions
and
15,353 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,6 @@ | ||
unity/Dependencies/ | ||
unity/Assets/MagicMirror | ||
unity/Assets/MessagePack | ||
unity/Assets/MIConvexHull | ||
unity/Assets/Priority Queue | ||
unity/Assets/Plugins |
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,10 @@ | ||
name: Lint | ||
|
||
on: [push, pull_request] | ||
|
||
jobs: | ||
lint: | ||
runs-on: ubuntu-latest | ||
steps: | ||
- uses: actions/checkout@v3 | ||
- uses: psf/black@23.12.1 # If version changed, update requirements-dev.txt |
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,22 @@ | ||
# Contributing | ||
|
||
We welcome contributions from the greater community. If you would like to make such a contributions we recommend first submitting an [issue](https://github.com/allenai/ai2thor/issues) describing your proposed improvement. Doing so can ensure we can validate your suggestions before you spend a great deal of time upon them. Improvements and bug fixes should be made via a pull request from your fork of the repository at [https://github.com/allenai/ai2thor](https://github.com/allenai/ai2thor). | ||
|
||
All code in pull requests should adhere to the following guidelines. | ||
|
||
## Found a bug or want to suggest an enhancement? | ||
|
||
Please submit an [issue](https://github.com/allenai/ai2thor/issues) in which you note the steps | ||
to reproduce the bug or in which you detail the enhancement. | ||
|
||
## Making a pull request? | ||
|
||
When making a pull request we require that any code respects the following guidelines. | ||
|
||
### Auto-formatting | ||
|
||
All Python and C# must be auto-formatted. To do this, simply run | ||
```bash | ||
invoke format | ||
``` | ||
from the root of the repository. |
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 |
---|---|---|
@@ -1,11 +1,13 @@ | ||
# GENERATED FILE - DO NOT EDIT | ||
DEFAULT_QUALITY = 'Ultra' | ||
QUALITY_SETTINGS = {'DONOTUSE': 0, | ||
'High': 5, | ||
'High WebGL': 8, | ||
'Low': 2, | ||
'Medium': 3, | ||
'MediumCloseFitShadows': 4, | ||
'Ultra': 7, | ||
'Very High': 6, | ||
'Very Low': 1} | ||
DEFAULT_QUALITY = "Ultra" | ||
QUALITY_SETTINGS = { | ||
"DONOTUSE": 0, | ||
"High": 5, | ||
"High WebGL": 8, | ||
"Low": 2, | ||
"Medium": 3, | ||
"MediumCloseFitShadows": 4, | ||
"Ultra": 7, | ||
"Very High": 6, | ||
"Very Low": 1, | ||
} |
Oops, something went wrong.