Changed float to bool
This commit is contained in:
parent
5c445df124
commit
43620bcc07
|
@ -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,
|
||||
|
|
|
@ -37,6 +37,6 @@ struct CARLA_API FEpisodeSettings
|
|||
|
||||
float ActorActiveDistance = 200000.f; // 2km
|
||||
|
||||
float SpectatorAsEgo = true;
|
||||
bool SpectatorAsEgo = true;
|
||||
|
||||
};
|
||||
|
|
Loading…
Reference in New Issue