summaryrefslogtreecommitdiff
path: root/scene
diff options
context:
space:
mode:
authorRĂ©mi Verschelde <rverschelde@gmail.com>2018-09-10 16:49:09 +0200
committerGitHub <noreply@github.com>2018-09-10 16:49:09 +0200
commit584f1ab0c5c095c7ee6323a0e5f8e2d17fcb8a0f (patch)
tree5f4d04fa502698cbefbda4286ace1add4531ef1d /scene
parentde60714b910601b6e39cf440cc21b391a90ee58e (diff)
parent334f04251353194c5874901b69d3a027a6f17bf9 (diff)
Merge pull request #21842 from merumelu/curve-point-count
Bind Curve::get_point_count
Diffstat (limited to 'scene')
-rw-r--r--scene/resources/curve.cpp1
1 files changed, 1 insertions, 0 deletions
diff --git a/scene/resources/curve.cpp b/scene/resources/curve.cpp
index d8989bf062..66af816a28 100644
--- a/scene/resources/curve.cpp
+++ b/scene/resources/curve.cpp
@@ -491,6 +491,7 @@ void Curve::ensure_default_setup(float p_min, float p_max) {
void Curve::_bind_methods() {
+ ClassDB::bind_method(D_METHOD("get_point_count"), &Curve::get_point_count);
ClassDB::bind_method(D_METHOD("add_point", "position", "left_tangent", "right_tangent", "left_mode", "right_mode"), &Curve::add_point, DEFVAL(0), DEFVAL(0), DEFVAL(TANGENT_FREE), DEFVAL(TANGENT_FREE));
ClassDB::bind_method(D_METHOD("remove_point", "index"), &Curve::remove_point);
ClassDB::bind_method(D_METHOD("clear_points"), &Curve::clear_points);