Files
test/source/blender/editors/space_script/script_ops.cc

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

27 lines
529 B
C++
Raw Normal View History

/* SPDX-FileCopyrightText: 2008 Blender Authors
*
* SPDX-License-Identifier: GPL-2.0-or-later */
/** \file
* \ingroup spscript
2011-02-27 20:29:51 +00:00
*/
#include <cstdlib>
#include "WM_api.hh"
#include "script_intern.hh"
/* ************************** registration **********************************/
void script_operatortypes()
{
WM_operatortype_append(SCRIPT_OT_python_file_run);
WM_operatortype_append(SCRIPT_OT_reload);
}
void script_keymap(wmKeyConfig * /*keyconf*/)
{
/* Script space is deprecated, and doesn't need a keymap */
}