Skip to content

Commit

Permalink
Rename synchronous_mode_running -> game_running
Browse files Browse the repository at this point in the history
make synchronization window target_game_time double to be able to
express exact game times
  • Loading branch information
berndgassmann committed Jul 23, 2024
1 parent b5c8557 commit a64115a
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion msg/CarlaStatus.idl
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ module carla_msgs {

@verbatim (language="comment", text=
"true: running, false: paused")
boolean synchronous_mode_running;
boolean game_running;
};
};
};
2 changes: 1 addition & 1 deletion msg/CarlaStatus.msg
Original file line number Diff line number Diff line change
Expand Up @@ -12,5 +12,5 @@ carla_msgs/CarlaEpisodeSettings episode_settings
uint64 frame # frame number

carla_msgs/CarlaSynchronizationWindowParticipantState[] synchronous_mode_participant_states
bool synchronous_mode_running # true: running, false: paused
bool game_running # true: running, false: paused

2 changes: 1 addition & 1 deletion msg/CarlaSynchronizationWindowParticipantState.idl
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ module carla_msgs {

uint32 participant_id;

float target_game_time;
double target_game_time;
};
};
};
2 changes: 1 addition & 1 deletion msg/CarlaSynchronizationWindowParticipantState.msg
Original file line number Diff line number Diff line change
Expand Up @@ -7,4 +7,4 @@

string client_id
uint32 participant_id
float32 target_game_time
float64 target_game_time

0 comments on commit a64115a

Please sign in to comment.