File tree Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Expand file tree Collapse file tree 2 files changed +3
-0
lines changed Original file line number Diff line number Diff line change 30
30
"get_birdview" : true ,
31
31
"get_infractions" : true ,
32
32
"traffic_lights_states" : null ,
33
+ "light_recurrent_states" : null ,
33
34
"random_seed" : null ,
34
35
"rendering_fov" : null ,
35
36
"rendering_center" : null
Original file line number Diff line number Diff line change @@ -157,11 +157,13 @@ void DriveRequest::update(const InitializeResponse &init_res) {
157
157
this ->agent_states_ = init_res.agent_states ();
158
158
this ->agent_attributes_ = init_res.agent_attributes ();
159
159
this ->recurrent_states_ = init_res.recurrent_states ();
160
+ this ->light_recurrent_states_ = init_res.light_recurrent_states ();
160
161
}
161
162
162
163
void DriveRequest::update (const DriveResponse &drive_res) {
163
164
this ->agent_states_ = drive_res.agent_states ();
164
165
this ->recurrent_states_ = drive_res.recurrent_states ();
166
+ this ->light_recurrent_states_ = drive_res.light_recurrent_states ();
165
167
}
166
168
167
169
std::string DriveRequest::body_str () {
You can’t perform that action at this time.
0 commit comments