diff options
author | Nr7 <Nr7@openmailbox.org> | 2014-02-17 16:00:51 +0200 |
---|---|---|
committer | Nr7 <N0r771@gmail.com> | 2014-02-17 16:11:20 +0200 |
commit | 1b6a16f8e6940cd23f0396120701b9a55e8ee6d0 (patch) | |
tree | c7cfef82b4c0e4ac4c28353e916e29b13f5e69f5 | |
parent | 891b2bdb4f2d1a1a6a1021ae569242fdf184cacc (diff) |
Fixed two incorrect bindings in Physics2DServer
-rw-r--r-- | servers/physics_2d_server.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/servers/physics_2d_server.cpp b/servers/physics_2d_server.cpp index cae9565c46..805708974a 100644 --- a/servers/physics_2d_server.cpp +++ b/servers/physics_2d_server.cpp @@ -259,8 +259,8 @@ void Physics2DServer::_bind_methods() { ObjectTypeDB::bind_method(_MD("area_clear_shapes","area"),&Physics2DServer::area_clear_shapes); - ObjectTypeDB::bind_method(_MD("area_set_param","area","param","value"),&Physics2DServer::area_get_param); - ObjectTypeDB::bind_method(_MD("area_set_transform","area","transform"),&Physics2DServer::area_get_transform); + ObjectTypeDB::bind_method(_MD("area_set_param","area","param","value"),&Physics2DServer::area_set_param); + ObjectTypeDB::bind_method(_MD("area_set_transform","area","transform"),&Physics2DServer::area_set_transform); ObjectTypeDB::bind_method(_MD("area_get_param","area","param"),&Physics2DServer::area_get_param); ObjectTypeDB::bind_method(_MD("area_get_transform","area"),&Physics2DServer::area_get_transform); |