forked from godotengine/godot
-
Notifications
You must be signed in to change notification settings - Fork 0
class_curve3d
reduz edited this page Apr 10, 2014
·
14 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, float tilt )
- float 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, float t ) const
- Vector3 interpolatef ( float fofs ) const
- void set_bake_interval ( float distance )
- float get_bake_interval ( ) const
- float get_baked_length ( ) const
- Vector3 interpolate_baked ( float offset, bool cubic=false ) const
- Vector3Array get_baked_points ( ) const
- RealArray get_baked_tilts ( ) const