diff options
author | merumelu <merumelu@protonmail.com> | 2018-09-07 20:07:44 +0200 |
---|---|---|
committer | merumelu <merumelu@protonmail.com> | 2018-09-07 20:07:44 +0200 |
commit | 334f04251353194c5874901b69d3a027a6f17bf9 (patch) | |
tree | 35d72c7563d4ac0a96261421a7a6ef50ea1e19cb /scene | |
parent | 6ce9951d9e487cfacec40ea27e2a2be241d9da77 (diff) |
Bind Curve::get_point_count
Diffstat (limited to 'scene')
-rw-r--r-- | scene/resources/curve.cpp | 1 |
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); |