Dreyevr

Results 14 comments of Dreyevr

**Packaged version** This was the python script without enabling synchronous mode: ``` import carla import time client = carla.Client('localhost', 2000) client.set_timeout(10.0) world = client.get_world() time_to_wait = 10.0 start_time = world.get_snapshot().timestamp.elapsed_seconds...

Thanks, this does pause the simulation. Is it also possible to display text on the screen when the simulation is paused to ask a question to the driver? After which...

If I'm not mistaken, the debug methods add the text in a specific location, and not on the dashboard for the driver to see like the speedometer. This isn't what...

That certainly helps us, thanks a lot. About displaying text while the simulation is paused, you mentioned it isn't straightforward. But what we had in mind was implementing an overlay,...

I tried what you suggested, but it seems the render thread is also paused. When the simulation is paused, I can only see what was displayed on the screen just...

First of all thanks for your help. We will try the way you described, but maybe we won't have to if the following is possible: 1) We display our questions...

Hi, I'm not sure how to implement the solutions you suggested. I am talking specifically about the following: ``` // this should be in some kind of "pause" function that...

Hi. Projecting text on the dashboard seems to work. But I was wondering if it's also possible to draw a kind of grey rectangle that is a bit transparant, over...

Thanks, I'll look into that. In the mean time, I was trying to get my additional code to add text compatible with your config file but it doesn't seem to...

Hi, I was indeed building for the package version. I just copied the code for the speedometer, gear and turnsignals. The problem seems to lie with the packaged version and...