2022-02-11 09:07:11 +11:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0-or-later
|
|
|
|
|
* Copyright 2008 Blender Foundation. All rights reserved. */
|
2008-12-25 14:17:54 +00:00
|
|
|
|
2019-02-18 08:08:12 +11:00
|
|
|
/** \file
|
|
|
|
|
* \ingroup spscript
|
2011-02-27 20:29:51 +00:00
|
|
|
*/
|
|
|
|
|
|
2008-12-25 14:17:54 +00:00
|
|
|
#include <math.h>
|
2020-03-19 09:33:03 +01:00
|
|
|
#include <stdlib.h>
|
2008-12-25 14:17:54 +00:00
|
|
|
|
|
|
|
|
#include "WM_api.h"
|
|
|
|
|
|
|
|
|
|
#include "script_intern.h"
|
|
|
|
|
|
|
|
|
|
/* ************************** registration **********************************/
|
|
|
|
|
|
|
|
|
|
void script_operatortypes(void)
|
|
|
|
|
{
|
2009-04-12 23:05:40 +00:00
|
|
|
WM_operatortype_append(SCRIPT_OT_python_file_run);
|
2010-06-01 08:15:43 +00:00
|
|
|
WM_operatortype_append(SCRIPT_OT_reload);
|
2008-12-25 14:17:54 +00:00
|
|
|
}
|
|
|
|
|
|
2014-02-08 10:52:56 -05:00
|
|
|
void script_keymap(wmKeyConfig *UNUSED(keyconf))
|
2008-12-25 14:17:54 +00:00
|
|
|
{
|
2014-02-08 10:52:56 -05:00
|
|
|
/* Script space is deprecated, and doesn't need a keymap */
|
2008-12-25 14:17:54 +00:00
|
|
|
}
|