Blender  V3.3
Functions | Variables
#include <stdlib.h>
#include "DNA_action_types.h"
#include "DNA_anim_types.h"
#include "DNA_scene_types.h"
#include "BLI_utildefines.h"
#include "MEM_guardedalloc.h"
#include "RNA_access.h"
#include "RNA_define.h"
#include "RNA_enum_types.h"
#include "rna_internal.h"
#include "WM_api.h"
#include "WM_types.h"

Go to the source code of this file.

Functions

static void rna_def_strip_fcurves (BlenderRNA *brna, PropertyRNA *cprop)
 
static void rna_def_nlastrip (BlenderRNA *brna)
 
static void rna_api_nlatrack_strips (BlenderRNA *brna, PropertyRNA *cprop)
 
static void rna_def_nlatrack (BlenderRNA *brna)
 
void RNA_def_nla (BlenderRNA *brna)
 

Variables

const EnumPropertyItem rna_enum_nla_mode_blend_items []
 
const EnumPropertyItem rna_enum_nla_mode_extend_items []
 

Function Documentation

◆ rna_api_nlatrack_strips()

static void rna_api_nlatrack_strips ( BlenderRNA brna,
PropertyRNA cprop 
)
static

◆ RNA_def_nla()

void RNA_def_nla ( BlenderRNA brna)

Definition at line 1060 of file rna_nla.c.

References rna_def_nlastrip(), and rna_def_nlatrack().

◆ rna_def_nlastrip()

static void rna_def_nlastrip ( BlenderRNA brna)
static

◆ rna_def_nlatrack()

static void rna_def_nlatrack ( BlenderRNA brna)
static

◆ rna_def_strip_fcurves()

static void rna_def_strip_fcurves ( BlenderRNA brna,
PropertyRNA cprop 
)
static

Variable Documentation

◆ rna_enum_nla_mode_blend_items

const EnumPropertyItem rna_enum_nla_mode_blend_items[]
Initial value:
= {
"REPLACE",
0,
"Replace",
"The strip values replace the accumulated results by amount specified by influence"},
"COMBINE",
0,
"Combine",
"The strip values are combined with accumulated results by appropriately using addition, "
"multiplication, or quaternion math, based on channel type"},
"ADD",
0,
"Add",
"Weighted result of strip is added to the accumulated results"},
"SUBTRACT",
0,
"Subtract",
"Weighted result of strip is removed from the accumulated results"},
"MULTIPLY",
0,
"Multiply",
"Weighted result of strip is multiplied with the accumulated results"},
{0, NULL, 0, NULL, NULL},
}
@ NLASTRIP_MODE_REPLACE
@ NLASTRIP_MODE_ADD
@ NLASTRIP_MODE_SUBTRACT
@ NLASTRIP_MODE_COMBINE
@ NLASTRIP_MODE_MULTIPLY
#define RNA_ENUM_ITEM_SEPR
Definition: RNA_types.h:483

Definition at line 27 of file rna_nla.c.

Referenced by rna_def_animdata(), and rna_def_nlastrip().

◆ rna_enum_nla_mode_extend_items

const EnumPropertyItem rna_enum_nla_mode_extend_items[]
Initial value:
= {
{NLASTRIP_EXTEND_NOTHING, "NOTHING", 0, "Nothing", "Strip has no influence past its extents"},
"HOLD",
0,
"Hold",
"Hold the first frame if no previous strips in track, and always hold last frame"},
{NLASTRIP_EXTEND_HOLD_FORWARD, "HOLD_FORWARD", 0, "Hold Forward", "Only hold last frame"},
{0, NULL, 0, NULL, NULL},
}
@ NLASTRIP_EXTEND_HOLD_FORWARD
@ NLASTRIP_EXTEND_NOTHING
@ NLASTRIP_EXTEND_HOLD

Definition at line 58 of file rna_nla.c.

Referenced by rna_def_animdata(), and rna_def_nlastrip().