Changed float to bool

This commit is contained in:
Guillermo 2023-04-12 14:03:24 +02:00 committed by bernat
parent 5c445df124
commit 43620bcc07
2 changed files with 2 additions and 2 deletions

View File

@ -47,7 +47,7 @@ namespace rpc {
float actor_active_distance = 2000.f; // 2km
float spectator_as_ego = true;
bool spectator_as_ego = true;
MSGPACK_DEFINE_ARRAY(synchronous_mode, no_rendering_mode, fixed_delta_seconds, substepping,
max_substep_delta_time, max_substeps, max_culling_distance, deterministic_ragdolls,

View File

@ -37,6 +37,6 @@ struct CARLA_API FEpisodeSettings
float ActorActiveDistance = 200000.f; // 2km
float SpectatorAsEgo = true;
bool SpectatorAsEgo = true;
};