Skip to content

Commit 22287c3

Browse files
committed
Bumping to Houdini Version: 20.5.10
Houdini Engine Version: 6.0 (API: 0)
1 parent 110d466 commit 22287c3

File tree

2 files changed

+16
-3
lines changed

2 files changed

+16
-3
lines changed

Plugins/HoudiniEngineUnity/Scripts/HAPI/HEU_HAPIFunctions.cs

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff 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,

Plugins/HoudiniEngineUnity/Scripts/HEU_HoudiniVersion.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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;

0 commit comments

Comments
 (0)