diff --git a/.vscode/settings.json b/.vscode/settings.json deleted file mode 100644 index d99f2f3..0000000 --- a/.vscode/settings.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "[python]": { - "editor.defaultFormatter": "ms-python.black-formatter" - }, - "python.formatting.provider": "none" -} \ No newline at end of file diff --git a/docs/README.md b/docs/README.md index 3c14559..d4ef44b 100644 --- a/docs/README.md +++ b/docs/README.md @@ -6,6 +6,7 @@ To build the documentation, you need to install [Material for MKDocs](https://sq ```bash pip install mkdocs-material +pip install mkdocs-glightbox ``` ## Serve diff --git a/docs/docs/developement/add_functionality/create_sensor.md b/docs/docs/developement/add_functionality/create_sensor.md index a6af5bd..65b7b02 100644 --- a/docs/docs/developement/add_functionality/create_sensor.md +++ b/docs/docs/developement/add_functionality/create_sensor.md @@ -149,13 +149,14 @@ class LaserDistanceOutput(OutputInterface): 1. The `RevertAfter` context manager is used to revert all changes made to the scene after the context manager is exited. -### Plugin Registration +### Sensor and Ouput Registration To register your sensor and output plugins with Syclops, add entries in your pyproject.toml file under the [project.entry-points."syclops.plugins"] section. For example: ```toml title="pyproject.toml" -[project.entry-points."syclops.plugins"] +[project.entry-points."syclops.sensors"] syclops_laser_sensor = "path.to.laser_distance_sensor:LaserDistanceSensor" +[project.entry-points."syclops.outputs"] syclops_laser_output = "path.to.laser_distance_output:LaserDistanceOutput" ``` diff --git a/syclops/asset_manager/asset_browser/public/index.html b/syclops/asset_manager/asset_browser/public/index.html index aded8a6..1cf26b2 100644 --- a/syclops/asset_manager/asset_browser/public/index.html +++ b/syclops/asset_manager/asset_browser/public/index.html @@ -7,7 +7,7 @@