diff options
author | Camille Mohr-Daurat <pouleyKetchoup@gmail.com> | 2021-09-30 12:11:50 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-30 12:11:50 -0700 |
commit | 1c0ae31c9eb1cd7d228e82ea6ad6babee5231395 (patch) | |
tree | bd6c21ff3d551182f4cc65dd3e4ebbb06681b722 /servers/physics_2d/physics_server_2d_wrap_mt.h | |
parent | 770bd61767b179127a6a8ff227a09c68c679f8fd (diff) | |
parent | d0ec46be682ef262c4d2518fd15237df0261f67b (diff) |
Merge pull request #53266 from nekomatata/remove-shape-metadata
Remove shape metadata from 2D physics server
Diffstat (limited to 'servers/physics_2d/physics_server_2d_wrap_mt.h')
-rw-r--r-- | servers/physics_2d/physics_server_2d_wrap_mt.h | 2 |
1 files changed, 0 insertions, 2 deletions
diff --git a/servers/physics_2d/physics_server_2d_wrap_mt.h b/servers/physics_2d/physics_server_2d_wrap_mt.h index f8733863aa..7925344d76 100644 --- a/servers/physics_2d/physics_server_2d_wrap_mt.h +++ b/servers/physics_2d/physics_server_2d_wrap_mt.h @@ -184,11 +184,9 @@ public: FUNC4(body_add_shape, RID, RID, const Transform2D &, bool); FUNC3(body_set_shape, RID, int, RID); FUNC3(body_set_shape_transform, RID, int, const Transform2D &); - FUNC3(body_set_shape_metadata, RID, int, const Variant &); FUNC1RC(int, body_get_shape_count, RID); FUNC2RC(Transform2D, body_get_shape_transform, RID, int); - FUNC2RC(Variant, body_get_shape_metadata, RID, int); FUNC2RC(RID, body_get_shape, RID, int); FUNC3(body_set_shape_disabled, RID, int, bool); |