File tree Expand file tree Collapse file tree 2 files changed +21
-3
lines changed
Plugins/HoudiniEngineUnity/Scripts Expand file tree Collapse file tree 2 files changed +21
-3
lines changed Original file line number Diff line number Diff line change @@ -500,6 +500,24 @@ public static extern HAPI_Result
500500 int choice_length ) ;
501501 [ DllImport ( HEU_HoudiniVersion . HAPI_LIBRARY , CallingConvention = CallingConvention . Cdecl ) ]
502502 public static extern HAPI_Result
503+ HAPI_GetAssetDefinitionParmTagName (
504+ ref HAPI_Session session ,
505+ HAPI_AssetLibraryId library_id ,
506+ byte [ ] asset_name ,
507+ HAPI_ParmId parm_id ,
508+ int tag_index ,
509+ out HAPI_StringHandle tag_name ) ;
510+ [ DllImport ( HEU_HoudiniVersion . HAPI_LIBRARY , CallingConvention = CallingConvention . Cdecl ) ]
511+ public static extern HAPI_Result
512+ HAPI_GetAssetDefinitionParmTagValue (
513+ ref HAPI_Session session ,
514+ HAPI_AssetLibraryId library_id ,
515+ byte [ ] asset_name ,
516+ HAPI_ParmId parm_id ,
517+ byte [ ] tag_name ,
518+ out HAPI_StringHandle tag_value ) ;
519+ [ DllImport ( HEU_HoudiniVersion . HAPI_LIBRARY , CallingConvention = CallingConvention . Cdecl ) ]
520+ public static extern HAPI_Result
503521 HAPI_GetLoadedAssetLibraryCount (
504522 ref HAPI_Session session ,
505523 out int count ) ;
Original file line number Diff line number Diff line change @@ -41,15 +41,15 @@ public class HEU_HoudiniVersion
4141 {
4242 public const int HOUDINI_MAJOR = 20 ;
4343 public const int HOUDINI_MINOR = 5 ;
44- public const int HOUDINI_BUILD = 325 ;
44+ public const int HOUDINI_BUILD = 384 ;
4545 public const int HOUDINI_PATCH = 0 ;
4646
47- public const string HOUDINI_VERSION_STRING = "20.5.325 " ;
47+ public const string HOUDINI_VERSION_STRING = "20.5.384 " ;
4848
4949 public const int HOUDINI_ENGINE_MAJOR = 7 ;
5050 public const int HOUDINI_ENGINE_MINOR = 0 ;
5151
52- public const int HOUDINI_ENGINE_API = 2 ;
52+ public const int HOUDINI_ENGINE_API = 5 ;
5353
5454 public const int UNITY_PLUGIN_VERSION = 2 ;
5555
You can’t perform that action at this time.
0 commit comments