├── .github └── workflows │ └── build_test.yml ├── .gitignore ├── .vscode └── settings.json ├── CONTRIBUTING.md ├── LICENSE ├── README.md ├── SConstruct ├── demo ├── bin │ └── godot_ros.gdextension ├── icon.svg ├── icon.svg.import ├── project.godot ├── talker.gd ├── talker.tscn └── view.gd ├── include └── godot_ros │ ├── image.tpp │ ├── node.hpp │ ├── register_types.hpp │ ├── scene_tree.hpp │ └── string.tpp ├── requirements.txt └── src ├── node.cpp ├── register_types.cpp └── scene_tree.cpp /.github/workflows/build_test.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/.github/workflows/build_test.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/.gitignore -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CONTRIBUTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/CONTRIBUTING.md -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/README.md -------------------------------------------------------------------------------- /SConstruct: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/SConstruct -------------------------------------------------------------------------------- /demo/bin/godot_ros.gdextension: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/demo/bin/godot_ros.gdextension -------------------------------------------------------------------------------- /demo/icon.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/demo/icon.svg -------------------------------------------------------------------------------- /demo/icon.svg.import: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/demo/icon.svg.import -------------------------------------------------------------------------------- /demo/project.godot: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/demo/project.godot -------------------------------------------------------------------------------- /demo/talker.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/demo/talker.gd -------------------------------------------------------------------------------- /demo/talker.tscn: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/demo/talker.tscn -------------------------------------------------------------------------------- /demo/view.gd: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/demo/view.gd -------------------------------------------------------------------------------- /include/godot_ros/image.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/include/godot_ros/image.tpp -------------------------------------------------------------------------------- /include/godot_ros/node.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/include/godot_ros/node.hpp -------------------------------------------------------------------------------- /include/godot_ros/register_types.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/include/godot_ros/register_types.hpp -------------------------------------------------------------------------------- /include/godot_ros/scene_tree.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/include/godot_ros/scene_tree.hpp -------------------------------------------------------------------------------- /include/godot_ros/string.tpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/include/godot_ros/string.tpp -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- 1 | scons==4.5.0 -------------------------------------------------------------------------------- /src/node.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/src/node.cpp -------------------------------------------------------------------------------- /src/register_types.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/src/register_types.cpp -------------------------------------------------------------------------------- /src/scene_tree.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/flynneva/godot_ros/HEAD/src/scene_tree.cpp --------------------------------------------------------------------------------