Added missing bool at world init

This commit is contained in:
Guillermo 2023-04-11 11:43:57 +02:00 committed by bernat
parent 1501a13b1e
commit 7df2fd8a96
1 changed files with 1 additions and 1 deletions

View File

@ -153,7 +153,7 @@ void export_world() {
;
class_<cr::EpisodeSettings>("WorldSettings")
.def(init<bool, bool, double, bool, double, int, float, bool, float, float>(
.def(init<bool, bool, double, bool, double, int, float, bool, float, float, bool>(
(arg("synchronous_mode")=false,
arg("no_rendering_mode")=false,
arg("fixed_delta_seconds")=0.0,