Closed Song-z-h closed 2 years ago
hi,
you can reduce the quadrotor size
e.g., add this
quadptr->setSize(Vector(0.01, 0.01, 0.01));
After setting the quadrotor size if you get "error: missing template arguments" when running make -j10 try this:
Vector<3> quad_size = Vector<3>(0.01, 0.01, 0.01);
quad_ptr_->setSize(quad_size);
Hi, During the training of PPO, if we set num_envs to 100, There will be 100 drones in the same scene, each drone is visible to the others. That would be a problem if we train in a scene with more drones. How could we make the drone invisible to the other drones? (by modifying the texture or something)
Greetings.