Skip to content

Commit

Permalink
Refactor organization.
Browse files Browse the repository at this point in the history
  • Loading branch information
digisomni committed Sep 30, 2024
1 parent bb240ff commit 40dd798
Show file tree
Hide file tree
Showing 5 changed files with 2 additions and 4 deletions.
2 changes: 1 addition & 1 deletion docs/ecosystem/tools/blender
Submodule blender updated 71 files
+7 −0 .gitignore
+3 −0 .gitmodules
+4 −0 .vscode/settings.json
+201 −201 LICENSE
+23 −2 README.md
+13 −15 __init__.py
+ assets/default/images/Environment.hdr
+ assets/default/images/Skybox.jpg
+0 −16 blender/vircadia_blender_world_tools/import_export/__init__.py
+0 −48 blender/vircadia_blender_world_tools/import_export/gltf_exporter.py
+0 −175 blender/vircadia_blender_world_tools/import_export/json_exporter.py
+0 −87 blender/vircadia_blender_world_tools/import_export/json_importer.py
+0 −61 blender/vircadia_blender_world_tools/operators/convert_to_vircadia_operators.py
+0 −36 blender/vircadia_blender_world_tools/operators/export_operators.py
+0 −39 blender/vircadia_blender_world_tools/ui/custom_properties_panel.py
+0 −125 blender/vircadia_blender_world_tools/ui/main_panel.py
+0 −53 blender/vircadia_blender_world_tools/utils/coordinate_utils.py
+0 −159 blender/vircadia_blender_world_tools/utils/panel_utils.py
+0 −146 blender/vircadia_blender_world_tools/utils/property_utils.py
+20 −0 blender_manifest.toml
+2 −0 config.py
+3 −0 docs/_category_.json
+136 −0 docs/general.md
+3 −0 docs/test.md
+16 −0 import_export/__init__.py
+174 −0 import_export/gltf_exporter.py
+129 −129 import_export/gltf_importer.py
+1,153 −0 import_export/gltf_supabase_import_export.py
+297 −0 import_export/old_json_exporter.py
+140 −0 import_export/old_json_importer.py
+12 −0 lightmap/__init__.py
+538 −0 lightmap/generateLightmaps.py
+77 −0 lightmap/lightmap_utils.py
+6 −0 operators/__init__.py
+32 −0 operators/clipboard_operators.py
+103 −0 operators/convert_to_vircadia_operators.py
+305 −287 operators/entity_creation_operators.py
+61 −0 operators/export_operators.py
+50 −50 operators/import_operators.py
+312 −0 operators/lightmap_operators.py
+6 −0 package-lock.json
+3 −0 requirements.txt
+603 −603 templates/UNUSED_REMOVE_models_all.json
+7 −7 templates/UNUSED_REMOVE_models_empty.json
+104 −0 templates/Vircadia_Collisions.py
+104 −0 templates/Vircadia_GLTF.py
+67 −65 templates/template_image.json
+58 −56 templates/template_light.json
+75 −73 templates/template_model.json
+111 −109 templates/template_particle.json
+68 −66 templates/template_shape.json
+69 −67 templates/template_text.json
+63 −61 templates/template_web.json
+123 −121 templates/template_zone.json
+4 −0 ui/__init__.py
+36 −34 ui/convert_to_vircadia_panel.py
+118 −0 ui/custom_properties_panel.py
+108 −151 ui/entity_creation_panel.py
+249 −0 ui/lightmap_panel.py
+398 −0 ui/main_panel.py
+16 −16 utils/__init__.py
+22 −22 utils/collection_utils.py
+70 −0 utils/coordinate_utils.py
+28 −0 utils/entities.py
+23 −23 utils/error_handling.py
+120 −124 utils/object_utils.py
+246 −0 utils/panel_utils.py
+291 −0 utils/property_utils.py
+46 −0 utils/visibility_utils.py
+186 −183 utils/world_setup.py
+1 −0 vircadia-world-meta
1 change: 0 additions & 1 deletion docs/ecosystem/vircadia-world-blender-tools
Submodule vircadia-world-blender-tools deleted from 914381
1 change: 0 additions & 1 deletion docs/ecosystem/vircadia-world-core
Submodule vircadia-world-core deleted from 1b0a76
1 change: 0 additions & 1 deletion docs/server/vircadia-world-server
Submodule vircadia-world-server deleted from 37a5dc
1 change: 1 addition & 0 deletions docusaurus.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -31,6 +31,7 @@ const config = {
sidebarPath: require.resolve('./sidebars.js'),
routeBasePath: '/',
editUrl: 'https://github.com/vircadia/vircadia-dev-docs/edit/master/',
exclude: ['**/vircadia-world-blender-tools/vircadia-world-meta'],
},
theme: {
customCss: require.resolve('./src/css/custom.css'),
Expand Down

0 comments on commit 40dd798

Please sign in to comment.