File tree Expand file tree Collapse file tree 2 files changed +16
-3
lines changed
Plugins/HoudiniEngineUnity/Scripts Expand file tree Collapse file tree 2 files changed +16
-3
lines changed Original file line number Diff line number Diff line change @@ -223,6 +223,19 @@ public static extern HAPI_Result
223223 int length ) ;
224224 [ DllImport ( HEU_HoudiniVersion . HAPI_LIBRARY , CallingConvention = CallingConvention . Cdecl ) ]
225225 public static extern HAPI_Result
226+ HAPI_GetMessageNodeCount (
227+ ref HAPI_Session session ,
228+ HAPI_NodeId node_id ,
229+ out int count ) ;
230+ [ DllImport ( HEU_HoudiniVersion . HAPI_LIBRARY , CallingConvention = CallingConvention . Cdecl ) ]
231+ public static extern HAPI_Result
232+ HAPI_GetMessageNodeIds (
233+ ref HAPI_Session session ,
234+ HAPI_NodeId node_id ,
235+ [ Out ] HAPI_NodeId [ ] message_node_ids_array ,
236+ int count ) ;
237+ [ DllImport ( HEU_HoudiniVersion . HAPI_LIBRARY , CallingConvention = CallingConvention . Cdecl ) ]
238+ public static extern HAPI_Result
226239 HAPI_CheckForSpecificErrors (
227240 ref HAPI_Session session ,
228241 HAPI_NodeId node_id ,
Original file line number Diff line number Diff line change @@ -40,11 +40,11 @@ namespace HoudiniEngineUnity
4040 public class HEU_HoudiniVersion
4141 {
4242 public const int HOUDINI_MAJOR = 20 ;
43- public const int HOUDINI_MINOR = 0 ;
44- public const int HOUDINI_BUILD = 465 ;
43+ public const int HOUDINI_MINOR = 5 ;
44+ public const int HOUDINI_BUILD = 10 ;
4545 public const int HOUDINI_PATCH = 0 ;
4646
47- public const string HOUDINI_VERSION_STRING = "20.0.465 " ;
47+ public const string HOUDINI_VERSION_STRING = "20.5.10 " ;
4848
4949 public const int HOUDINI_ENGINE_MAJOR = 6 ;
5050 public const int HOUDINI_ENGINE_MINOR = 0 ;
You can’t perform that action at this time.
0 commit comments