I currently have a ground plane defined in sdf
format with the following tags
<static>true</static>
<gravity>false</gravity>
In my source file, I specify
plant.AddForceElement<UniformGravityFieldElement>();
Question:
- Is the
<static>
and<gravity>
tags respected? Or does thisGravityFieldElement
affect everything? - If the tags are not respected, how do I prevent the
GravityFieldElement
from accelerating my ground plane?