/// <summary> /// Check that the Unity plugin's Houdini Engine version matches with the linked Houdini Engine API version. /// </summary> /// <returns>True if the versions match.</returns> public static bool CheckVersionMatch() { HEU_SessionBase sessionBase = GetOrCreateDefaultSession(); if (sessionBase != null) { return sessionBase.CheckVersionMatch(); } return false; }