Sync physics entities.

This commit is contained in:
IQuant 2024-12-22 16:16:37 +03:00
parent 59f8381a95
commit 9955f3c4b2
8 changed files with 203 additions and 21 deletions

View file

@ -29,8 +29,10 @@ def maybe_map_types(name, typ):
typ = "bool"
if typ == "item_entity_id":
typ = "entity_id"
if typ == "physics_body_id":
raise ValueError(f"{typ} not supported")
#if typ == "physics_body_id":
# raise ValueError(f"{typ} not supported")
if name == "physics_body_id":
typ = "physics_body_id"
return typ
def parse_arg(arg_s):