Blender  V3.3
BKE_action.hh
Go to the documentation of this file.
1 /* SPDX-License-Identifier: GPL-2.0-or-later */
2 #pragma once
3 
7 #ifndef __cplusplus
8 # error This is a C++ only header.
9 #endif
10 
11 #include "BLI_function_ref.hh"
12 
13 struct FCurve;
14 struct bAction;
15 
16 namespace blender::bke {
17 
18 using FoundFCurveCallback = blender::FunctionRef<void(FCurve *fcurve, const char *bone_name)>;
20 
21 }; // namespace blender::bke
DEGForeachIDComponentCallback callback
SyclQueue void void size_t num_bytes void
void BKE_action_find_fcurves_with_bones(const bAction *action, FoundFCurveCallback callback)
Definition: action_bones.cc:21