edbeeching / godot_rl_agents_examples

Example Environments for the Godot RL Agents library
MIT License
37 stars 13 forks source link

fix(jumper hard) #1

Closed visuallization closed 1 year ago

visuallization commented 1 year ago

move @tool to the top of the file to make the project work again + remove debug draw from autoload

@edbeeching I just noticed that @ryash already fixed this in the plugin repo. Should we make the plugin repo a submodule of every example?

edbeeching commented 1 year ago

Ye that makes sense, happy to accept a PR on that. I'll merge this one in the mean time. Also, I think the FPS example is probably broken since they removed some of the IK features. I have been meaning to look at this this.

visuallization commented 1 year ago

@edbeeching alright great! I think to make this work nicely out of the box we should flatten the folder hierachy of godot_rl_agents_plugin.

So instead of:

godot_rl_agents_plugin
--addons
----godot_rl_agents

we would just have:

godot_rl_agents_plugin

That way we can include the submodules directly in each of the examples addons direcory.

What do you think?