2023-08-16 00:20:26 +10:00
|
|
|
/* SPDX-FileCopyrightText: 2007 Blender Authors
|
2023-07-21 02:18:59 +02:00
|
|
|
*
|
|
|
|
|
* SPDX-License-Identifier: GPL-2.0-or-later */
|
|
|
|
|
|
|
|
|
|
/** \file
|
|
|
|
|
* \ingroup pythonintern
|
|
|
|
|
*/
|
|
|
|
|
|
2024-09-24 17:07:49 +02:00
|
|
|
#include "BPY_extern.hh"
|
2023-07-21 02:18:59 +02:00
|
|
|
|
|
|
|
|
/* python, will come back */
|
2025-01-07 11:26:06 +11:00
|
|
|
// void BPY_script_exec() {}
|
|
|
|
|
// void BPY_python_start() {}
|
2023-07-21 10:59:54 +10:00
|
|
|
void BPY_pyconstraint_exec(bPythonConstraint * /*con*/,
|
|
|
|
|
bConstraintOb * /*cob*/,
|
|
|
|
|
ListBase * /*targets*/)
|
2023-07-21 02:18:59 +02:00
|
|
|
{
|
|
|
|
|
}
|
2023-07-21 10:59:54 +10:00
|
|
|
void BPY_pyconstraint_target(bPythonConstraint * /*con*/, bConstraintTarget * /*ct*/) {}
|
|
|
|
|
bool BPY_is_pyconstraint(Text * /*text*/)
|
2023-07-21 02:18:59 +02:00
|
|
|
{
|
2023-07-22 11:36:59 +10:00
|
|
|
return false;
|
2023-07-21 02:18:59 +02:00
|
|
|
}
|
2023-07-21 10:59:54 +10:00
|
|
|
void BPY_pyconstraint_update(Object * /*owner*/, bConstraint * /*con*/) {}
|