diff options
author | Gerold31 <kramer.leroy@gmail.com> | 2014-10-26 15:07:54 +0100 |
---|---|---|
committer | Gerold31 <kramer.leroy@gmail.com> | 2014-10-26 15:07:54 +0100 |
commit | 6532aa627cd6a4b1f590dcf1d91c03a3860ce889 (patch) | |
tree | 97f2ed84b6df5c58f58909c68c6d4c35f172e559 /scene/resources/shader_graph.cpp | |
parent | b38118c5cb363c9aa07fa90bf246eee8edeff203 (diff) |
Fix some more incorrect bindings
Diffstat (limited to 'scene/resources/shader_graph.cpp')
-rw-r--r-- | scene/resources/shader_graph.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/scene/resources/shader_graph.cpp b/scene/resources/shader_graph.cpp index df5fee81a8..3ed6cebf07 100644 --- a/scene/resources/shader_graph.cpp +++ b/scene/resources/shader_graph.cpp @@ -148,8 +148,8 @@ void ShaderGraph::_bind_methods() { ObjectTypeDB::bind_method(_MD("node_set_pos"),&ShaderGraph::node_set_pos ); ObjectTypeDB::bind_method(_MD("node_get_pos"),&ShaderGraph::node_get_pos ); - ObjectTypeDB::bind_method(_MD("node_get_param"),&ShaderGraph::node_get_type); - ObjectTypeDB::bind_method(_MD("node_get_type"),&ShaderGraph::node_get_param); + ObjectTypeDB::bind_method(_MD("node_get_param"),&ShaderGraph::node_get_param); + ObjectTypeDB::bind_method(_MD("node_get_type"),&ShaderGraph::node_get_type); ObjectTypeDB::bind_method(_MD("connect"),&ShaderGraph::connect ); ObjectTypeDB::bind_method(_MD("disconnect"),&ShaderGraph::disconnect ); |