misc
Browse files- .gitignore +1 -0
- README.md +16 -1
.gitignore
ADDED
|
@@ -0,0 +1 @@
|
|
|
|
|
|
|
| 1 |
+
.DS_Store
|
README.md
CHANGED
|
@@ -52,4 +52,19 @@ Our Top-1 Principle: We must make it SUPER EASY to use.
|
|
| 52 |
File "./genesis/engine/entities/rigid_entity/rigid_entity.py", line 743, in _add_by_info
|
| 53 |
vmesh=g_info["vmesh"],
|
| 54 |
KeyError: 'vmesh'
|
| 55 |
-
```
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
| 52 |
File "./genesis/engine/entities/rigid_entity/rigid_entity.py", line 743, in _add_by_info
|
| 53 |
vmesh=g_info["vmesh"],
|
| 54 |
KeyError: 'vmesh'
|
| 55 |
+
```
|
| 56 |
+
|
| 57 |
+
## FQA
|
| 58 |
+
- `[ERROR] ValueError: Error: number of faces should be between 1 and 200000 in STL file; perhaps this is an ASCII file?`
|
| 59 |
+
- check the file type by `file <path to .stl>`
|
| 60 |
+
- if ASCII, check if you have initialized the git LFS
|
| 61 |
+
```bash
|
| 62 |
+
# Install Git LFS
|
| 63 |
+
apt install git-lfs
|
| 64 |
+
# Initialize Git LFS in the repository
|
| 65 |
+
cd ~/eden_assets
|
| 66 |
+
git lfs install
|
| 67 |
+
# Pull the actual STL files
|
| 68 |
+
git lfs pull
|
| 69 |
+
```
|
| 70 |
+
- check if the error is resolved.
|