Skip to content
Draft

Dev #8252

Changes from 1 commit
Commits
Show all changes
57 commits
Select commit Hold shift + click to select a range
4952c74
added cpp client build docs (#7942)
MattRoweEAIF Jul 11, 2024
5c2d297
fixed IMU units (#7960)
MattRoweEAIF Jul 17, 2024
32f97ea
Merge branch 'dev' of https://github.com/carla-simulator/carla into dev
Blyron Jul 19, 2024
29fbcce
Update README.md with new TinyURL links (#7988)
MattRoweEAIF Jul 25, 2024
eeb507e
Added inverse transform (#7999)
glopezdiest Jul 31, 2024
e83b79b
Merge branch 'dev' of https://github.com/carla-simulator/carla into dev
Blyron Jul 31, 2024
f2695a1
Aaron/fixwheelchair (#8001)
Blyron Jul 31, 2024
1ef3f55
Docs/unit updates (#8007)
MattRoweEAIF Jul 31, 2024
fd44ea0
Add a `*.pyi` file for auto-completion & hints.
Minokori Dec 16, 2023
951fcc4
Fixes and missing Iterators
Daraan Feb 15, 2024
be8735f
Fixed Actor.parent
Daraan Feb 19, 2024
bc6e7cd
Fixed missing return types
Daraan Feb 29, 2024
251b293
Updated changelog
Daraan Feb 29, 2024
7b2c1db
Added DSVEventArray iterator
Daraan Feb 29, 2024
f275e47
Added missing type for Labelled Point
Daraan Feb 29, 2024
4c1104d
Fixed spelling misstakes
Daraan Feb 29, 2024
755c0d8
Removed wrong unit indication
Daraan Mar 14, 2024
232cb8c
Added missing -> World to load_world
Daraan Mar 14, 2024
a0cff71
Added missing return value to reload_world
Daraan Mar 14, 2024
de33210
FIX: __init__ methods do not return
Daraan Mar 14, 2024
0197e0a
FIX: added ApplyTransform, fixed ApplyTorque
Daraan Apr 2, 2024
1d4450b
Filled in missing information and types.
Daraan Apr 3, 2024
4c086ad
ActorList.filter actually returns ActorList
Daraan Apr 3, 2024
caac503
Fixed CityObjectLabels
Daraan Apr 12, 2024
df1eb25
Disambiguated get_waypoint signature
Daraan Apr 12, 2024
e765559
Added undocumented variables
Daraan Apr 12, 2024
ddb5834
Corrected Sensor.is_listening
Daraan Jun 14, 2024
2935897
Added type hints for `values` attribute on enums
Daraan Jul 23, 2024
8df99c0
Fix intendation shadowing methods
Daraan Jul 24, 2024
19b892f
Fix missing @property
Daraan Jul 24, 2024
a089c3b
Formatted some docstring to be shorter
Daraan Jul 24, 2024
d9c217e
Added stubs for HUD drawing
Daraan Jul 24, 2024
41e595c
Corrected and more precise type-hints
Daraan Jul 24, 2024
f797e15
Improved get_waypoint disambiguation
Daraan Jul 24, 2024
b061f9e
Fix spelling mistakes
Daraan Jul 24, 2024
a959577
Better usage of Enum if typing.Self is availiable
Daraan Jul 29, 2024
453ceca
Fix: Enum values were tuples. Added Flag or Int to Enums
Daraan Jul 29, 2024
da80757
Fixes for wrong stubs
Daraan Jul 29, 2024
ca81e35
Added self parameter to property signatures
Daraan Jul 29, 2024
77856f4
Various fixes
Daraan Jul 29, 2024
798c9e1
Added setters for VehicleControl
Daraan Jul 29, 2024
26dc386
Improved get_waypoints and Literal type hints
Daraan Jul 29, 2024
58e0374
Corrected [try_]spawn_actor keyword name
Daraan Aug 1, 2024
aec0b26
Added Transform.inverse_transform and corrected signature
Daraan Aug 1, 2024
2b465bc
Improved Callable and callbacks signature
Daraan Aug 8, 2024
7633334
Corrections and additions
Daraan Aug 15, 2024
334740a
Fixed Vector arithmetic
Daraan Aug 23, 2024
c097d7a
added digital twins video (#8090)
MattRoweEAIF Aug 29, 2024
00df447
Merge branch 'dev' of https://github.com/carla-simulator/carla into dev
Blyron Sep 2, 2024
9e94feb
navigation information is now loaded when changing maps
AreopagX Feb 29, 2024
4d09f0a
Porting the changes done to UE5 to fix the recording leak to UE4
jorge-kabuto Sep 12, 2024
c733936
Fixed typo in CityScapes palette (#8137)
sergiopaniego Sep 13, 2024
92a6e71
Correcting makefile typo to avoid override warning for target "downlo…
Ylmdrin Sep 20, 2024
4feeb77
Merge branch 'dev' of https://github.com/carla-simulator/carla into dev
Blyron Sep 25, 2024
f7ed6c2
fix typo in title (#8225)
MattRoweEAIF Sep 30, 2024
2a2cc5f
added unreal coord system, fixed v2x (#8251)
MattRoweEAIF Oct 7, 2024
cb9fe83
fix: update README.md (#7959)
yukkysaito May 5, 2025
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Added missing -> World to load_world
  • Loading branch information
Daraan authored and Blyron committed Aug 28, 2024
commit 232cb8c2501a4b1a53fd9cd8cbeb7b1368758b23
5 changes: 4 additions & 1 deletion PythonAPI/carla/source/carla/libcarla.pyi
Original file line number Diff line number Diff line change
Expand Up @@ -827,7 +827,7 @@ class Client():
`reset_settings (bool, optional)`: Option to reset the episode setting to default values, set to false to keep the current settings. This is useful to keep sync mode when changing map and to keep deterministic scenarios. Defaults to True.\n
"""

def load_world(self, map_name: str, reset_settings=True, map_layers=MapLayer.All):
def load_world(self, map_name: str, reset_settings=True, map_layers=MapLayer.All) -> World:
"""Creates a new world with default settings using `map_name` map. All actors in the current world will be destroyed.

+ Warning: `map_layers` are only available for "Opt" maps
Expand All @@ -836,6 +836,9 @@ class Client():
`map_name (str)`: Name of the map to be used in this world. Accepts both full paths and map names,e.g. `'/Game/Carla/Maps/Town01'` or `'Town01'`. Remember that these paths are dynamic.\n
`reset_settings (bool, optional)`: Option to reset the episode setting to default values, set to false to keep the current settings. This is useful to keep sync mode when changing map and to keep deterministic scenarios. Defaults to True.\n
`map_layers (MapLayer, optional)`: Layers of the map that will be loaded. This parameter works like a flag mask. Defaults to MapLayer.All.\n

Returns:
`World`\n
"""

def reload_world(self, reset_settings=True):
Expand Down