forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 20
class_curve3d
reduz edited this page Feb 23, 2014
·
9 revisions
####Inherits: Resource ####Category: Core
- int get_point_count ( ) const
- void add_point ( Vector3 pos, Vector3 in=Vector3(0, 0, 0), Vector3 out=Vector3(0, 0, 0), int atpos=-1 )
- void set_point_pos ( int idx, Vector3 pos )
- Vector3 get_point_pos ( int idx ) const
- void set_point_tilt ( int idx, real tilt )
- real get_point_tilt ( int idx ) const
- void set_point_in ( int idx, Vector3 pos )
- Vector3 get_point_in ( int idx ) const
- void set_point_out ( int idx, Vector3 pos )
- Vector3 get_point_out ( int idx ) const
- void remove_point ( int idx )
- Vector3 interpolate ( int idx, real t ) const
- Vector3 interpolatef ( real fofs ) const
- void set_bake_interval ( real distance )
- real get_bake_interval ( ) const
- real get_baked_length ( ) const
- Vector3 interpolate_baked ( real offset, bool cubic=false ) const
- Vector3Array get_baked_points ( ) const
- RealArray get_baked_tilts ( ) const