forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 0
class_curve2d
reduz edited this page Feb 23, 2014
·
11 revisions
Inherits: resource\ Category: Core\
- int #get_point_count(****) const
- void #add_point( Vector2 pos, Vector2 in=Vector2(0,0), Vector2 out=Vector2(0,0) )
- void #set_point_pos( int idx, Vector2 pos )
- Vector2 #get_point_pos( int idx ) const
- void #set_point_in( int idx, Vector2 pos )
- Vector2 #get_point_in( int idx ) const
- void #set_point_out( int idx, Vector2 pos )
- Vector2 #get_point_out( int idx ) const
- void #remove_point( int idx )
- Vector2 #interpolate( int idx, real t ) const
- Vector2Array #bake( int subdivs=10 ) const
- void #set_points_in( Vector2Array arg0 )
- void #set_points_out( Vector2Array arg0 )
- void #set_points_pos( Vector2Array arg0 )
- Vector2Array #get_points_in(****) const
- Vector2Array #get_points_out(****) const
- Vector2Array #get_points_pos(****) const