Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/systems/physics/Physics.cc
Original file line number Diff line number Diff line change
Expand Up @@ -851,8 +851,8 @@ void Physics::Configure(const Entity &_entity,
physics::FeaturePolicy3d>>();
if (classNames.empty())
{
gzerr << "No physics plugins found in library [" << pathToLib << "]."
<< std::endl;
gzerr << "No physics plugins implementing required interface found in "
<< "library [" << pathToLib << "]." << std::endl;
return;
}

Expand Down
6 changes: 6 additions & 0 deletions tutorials/physics.md
Original file line number Diff line number Diff line change
Expand Up @@ -127,6 +127,12 @@ that path to the environment variable as described above.
There was some problem loading that file. Check that it exists, that you have
permissions to access it, and that it's acually a physics engine plugin.

> No physics plugins implementing required interface found in library
> [/home/physics_engines/libCustomEngine.so]

The library was found but none of the plugins in the library implement the
required interface to be considered a physics plugin.

> No plugins with all required features found in library
> [/home/physics_engines/libCustomEngine.so]

Expand Down
Loading