SpiecsEngine
 
Loading...
Searching...
No Matches

◆ GetHoudiniLastCookError()

static std::string HoudiniEngine::GetHoudiniLastCookError ( )
static

Definition at line 57 of file HoudiniCore.h.

58 {
59 int bufferLength;
60 HAPI_GetStatusStringBufLength(nullptr, HAPI_STATUS_COOK_RESULT, HAPI_STATUSVERBOSITY_ERRORS, &bufferLength);
61
62 char* buffer = new char[bufferLength];
63 HAPI_GetStatusString(nullptr, HAPI_STATUS_COOK_RESULT, buffer, bufferLength);
64
65 std::string result(buffer);
66 delete[] buffer;
67
68 return result;
69 }