![]() |
|
#2
|
|||
|
|||
Sweet!
Does the custom node call a specified Python function from inside the draw method? If so, you will need to make sure the plugin acquires the Python global interpreter lock before triggering the Python code. This might be the cause of the crashes you mention. Example: Code:
PyGILState_STATE pyGILState = PyGILState_Ensure(); //Run Python code PyGILState_Release(pyGILState); |
|
|
![]() |
||||
Thread | Thread Starter | Forum | Replies | Last Post |
Creating a Vizard Sensor Plugin | farshizzo | Plug-in development | 25 | 08-01-2019 12:24 AM |
Live Characters plugin | Frank Verberne | Vizard | 7 | 03-01-2012 02:23 AM |
Howto debug a custom plugin? | reedev | Plug-in development | 3 | 04-23-2009 02:16 PM |
Vicon Plugin | Micheal | Plug-in development | 2 | 08-29-2007 03:03 AM |
Could not find plugin to load objects... | halley | Vizard | 1 | 05-30-2006 11:01 AM |