-
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.
* Update subrepos. * restore missing updates restores missing updates * "Paste" content URL button now filters out file name "Paste" content URL button now filters out pasted file name automatically * Replace Blender SDK with Python SDK submodule * Update submodules. * Update venv name. * Remove vircadia-world-meta submodule * Remove old sdk folder. * Reinitialized vircadia_world_sdk_py submodule with new name * Update types further. * Update README to explain how to install plugin. * Rename files, prep realtime capability for Blender as a client. * WIP to setup Realtime functionality. * WIP. * Update subrepo. * Delete docs that were added back by accident. * Update filters. * Merge current state [not finished]. --------- Co-authored-by: Aitolda <[email protected]>
- Loading branch information
Showing
27 changed files
with
1,041 additions
and
195 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 |
---|---|---|
@@ -1,7 +1,9 @@ | ||
test/export/* | ||
test/import/* | ||
|
||
development-env/ | ||
.venv/ | ||
|
||
wheels/ | ||
dist/* | ||
|
||
# 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 |
---|---|---|
@@ -1,6 +1,3 @@ | ||
[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 | ||
[submodule "vircadia_world_sdk_py"] | ||
path = vircadia_world_sdk_py | ||
url = https://github.com/vircadia/vircadia-world-sdk-py.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
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,8 +1,8 @@ | ||
schema_version = "1.0.0" | ||
|
||
id = "vircadia_world_tools" | ||
id = "vircadia_world_blender_tools" | ||
version = "0.1.0" | ||
name = "Vircadia World Tools" | ||
name = "Vircadia World Blender Tools" | ||
tagline = "Create and edit Vircadia worlds in Blender" | ||
maintainer = "Vircadia Contributors <[email protected]>" | ||
type = "add-on" | ||
|
@@ -15,6 +15,14 @@ license = [ | |
"SPDX:Apache-2.0", | ||
] | ||
|
||
wheels = [ | ||
] | ||
|
||
platforms = [ | ||
"windows.x86_64", | ||
"linux.x86_64", | ||
"macos-arm64", | ||
] | ||
|
||
[permissions] | ||
files = "Import/export Vircadia environments to/from disk" | ||
|
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,16 +1,16 @@ | ||
from . import old_json_importer | ||
from . import old_json_exporter | ||
from . import gltf_importer | ||
from . import gltf_exporter | ||
from . import world_import | ||
from . import old_gltf_exporter | ||
|
||
def register(): | ||
old_json_importer.register() | ||
old_json_exporter.register() | ||
gltf_importer.register() | ||
gltf_exporter.register() | ||
world_import.register() | ||
old_gltf_exporter.register() | ||
|
||
def unregister(): | ||
gltf_exporter.unregister() | ||
gltf_importer.unregister() | ||
old_gltf_exporter.unregister() | ||
world_import.unregister() | ||
old_json_exporter.unregister() | ||
old_json_importer.unregister() |
This file was deleted.
Oops, something went wrong.
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
Oops, something went wrong.