forked from blurstudio/Py3dsMax
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathblurPython.h
More file actions
Latest commit
20 lines (14 loc) · 450 Bytes
/
Copy pathblurPython.h
File metadata and controls
20 lines (14 loc) · 450 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
#ifndef__BLURPYTHON_H__
#define__BLURPYTHON_H__
#include"IPathConfigMgr.h"
// the initialize_blurpython function is found in the studiomax_module file
PyMODINIT_FUNCinitialize_blurpython();
voidBlurPythonInit() {
// Step 1: initialize the blur plugin
init_plugin( "blurPython", 1100 );
// Step 2: initialize python
Py_Initialize();
// Step 3: initialize 3dsMax
initialize_blurpython();
}
#endif__BLURPYTHON_H__