Welcome to mirror list, hosted at ThFree Co, Russian Federation.

rna_action_api.c « intern « makesrna « blender « source - git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 4fa9a88b41170a2adc38099e894cfbd1e09ed870 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* SPDX-License-Identifier: GPL-2.0-or-later
 * Copyright 2009 Blender Foundation. All rights reserved. */

/** \file
 * \ingroup RNA
 */

#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <time.h>

#include "BLI_utildefines.h"

#include "RNA_define.h"

#include "DNA_action_types.h"

#include "rna_internal.h" /* own include */

#ifdef RNA_RUNTIME

#  include "BKE_action.h"

#  include "DNA_anim_types.h"
#  include "DNA_curve_types.h"

static void rna_Action_flip_with_pose(bAction *act, ReportList *reports, Object *ob)
{
  if (ob->type != OB_ARMATURE) {
    BKE_report(reports, RPT_ERROR, "Only armature objects are supported");
    return;
  }
  BKE_action_flip_with_pose(act, ob);

  /* Only for redraw. */
  WM_main_add_notifier(NC_ANIMATION | ND_KEYFRAME | NA_EDITED, NULL);
}

#else

void RNA_api_action(StructRNA *srna)
{
  FunctionRNA *func;
  PropertyRNA *parm;

  func = RNA_def_function(srna, "flip_with_pose", "rna_Action_flip_with_pose");
  RNA_def_function_ui_description(func, "Flip the action around the X axis using a pose");
  RNA_def_function_flag(func, FUNC_USE_REPORTS);

  parm = RNA_def_pointer(
      func, "object", "Object", "", "The reference armature object to use when flipping");
  RNA_def_parameter_flags(parm, PROP_NEVER_NULL, PARM_REQUIRED);
}

#endif