-
Notifications
You must be signed in to change notification settings - Fork 0
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 #1 from vircadia/feature/v1_0
v1.0
- Loading branch information
Showing
79 changed files
with
6,275 additions
and
3,410 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,23 @@ | ||
# Video | ||
*.mp4 filter=lfs diff=lfs merge=lfs -text | ||
*.mov filter=lfs diff=lfs merge=lfs -text | ||
*.avi filter=lfs diff=lfs merge=lfs -text | ||
*.wmv filter=lfs diff=lfs merge=lfs -text | ||
*.flv filter=lfs diff=lfs merge=lfs -text | ||
*.mkv filter=lfs diff=lfs merge=lfs -text | ||
*.webm filter=lfs diff=lfs merge=lfs -text | ||
|
||
# Audio | ||
*.wav filter=lfs diff=lfs merge=lfs -text | ||
*.mp3 filter=lfs diff=lfs merge=lfs -text | ||
*.ogg filter=lfs diff=lfs merge=lfs -text | ||
*.flac filter=lfs diff=lfs merge=lfs -text | ||
*.aac filter=lfs diff=lfs merge=lfs -text | ||
*.m4a filter=lfs diff=lfs merge=lfs -text | ||
|
||
# 3D and Animation | ||
*.blend filter=lfs diff=lfs merge=lfs -text | ||
*.fbx filter=lfs diff=lfs merge=lfs -text | ||
*.obj filter=lfs diff=lfs merge=lfs -text | ||
*.glb filter=lfs diff=lfs merge=lfs -text | ||
*.gltf filter=lfs diff=lfs merge=lfs -text |
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,7 @@ | ||
test/export/* | ||
test/import/* | ||
|
||
development-env/ | ||
|
||
# Python | ||
__pycache__ |
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 @@ | ||
[submodule "vircadia-world-meta"] | ||
path = vircadia-world-meta | ||
url = https://github.com/vircadia/vircadia-world-meta | ||
[submodule "vircadia-world-sdk-blender"] | ||
path = vircadia-world-sdk-blender | ||
url = https://github.com/vircadia/vircadia-world-sdk-blender.git |
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,4 @@ | ||
{ | ||
"python.analysis.autoImportCompletions": true, | ||
"python.analysis.typeCheckingMode": "basic" | ||
} |
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,7 +1,28 @@ | ||
# Vircadia World Tools | ||
# Vircadia World Blender Tools | ||
|
||
This is a Blender add-on that allows the creation of full Vircadia worlds within Blender, to be exported directly for upload into the server once done. | ||
|
||
## Installation | ||
|
||
1. Download the latest release from the [releases page](https://github.com/vircadia/vircadia-world-tools/releases). | ||
2. Open Blender and go to `Edit > Preferences > Add-ons`. | ||
3. Click `Install` and select the downloaded folder. | ||
4. Enable the add-on. | ||
5. Make sure your right sidebar is open, if not the hotkey typically is `N` to open it. | ||
6. Navigate to the `Vircadia` tab. | ||
|
||
## Requirements | ||
|
||
Blender Version [TBD] | ||
Blender Version 4.2 (LTS) or later. | ||
|
||
## Development | ||
|
||
1. Make a 'development-env' venv with python 3.10 or later. | ||
2. Install the dependencies with pip. | ||
3. Run Blender from the command line with the development add-on enabled. | ||
|
||
```bash | ||
python3 -m venv development-env | ||
source development-env/bin/activate | ||
pip install -r requirements.txt | ||
``` |
28 changes: 13 additions & 15 deletions
28
.../vircadia_blender_world_tools/__init__.py → __init__.py
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,3 @@ | ||
{ | ||
"label": "Blender" | ||
} |
File renamed without changes.
File renamed without changes
16 changes: 0 additions & 16 deletions
16
blender/vircadia_blender_world_tools/import_export/__init__.py
This file was deleted.
Oops, something went wrong.
48 changes: 0 additions & 48 deletions
48
blender/vircadia_blender_world_tools/import_export/gltf_exporter.py
This file was deleted.
Oops, something went wrong.
175 changes: 0 additions & 175 deletions
175
blender/vircadia_blender_world_tools/import_export/json_exporter.py
This file was deleted.
Oops, something went wrong.
Oops, something went wrong.