Blender V4.3
DNA_action_defaults.h
Go to the documentation of this file.
1/* SPDX-FileCopyrightText: 2024 Blender Authors
2 *
3 * SPDX-License-Identifier: GPL-2.0-or-later */
4
9#pragma once
10
11#include <math.h>
12
13/* clang-format off */
14
15/* -------------------------------------------------------------------- */
19#define _DNA_DEFAULT_ActionLayer \
20 { \
21 .influence = 1.0f, \
22 }
23
26/* -------------------------------------------------------------------- */
30#define _DNA_DEFAULT_ActionStrip \
31 { \
32 .data_index = -1, \
33 .frame_start = -INFINITY, \
34 .frame_end = INFINITY, \
35 }
36
39/* clang-format on */