Engine.intToHexString() does not appear int the API List
-
System Details:Win 11 / HISE Version 4.1.0 / Standalone / 64bit
STR (Steps to reproduce):
- Open HISE and type "Engine" into the API search field.
- Take note that "intToHexString" is not between "getZoomLevel" and "isControllerUsedByAutomation".
- Type the following code into
onInit()
and compile.
Console.print(Engine.intToHexString(0xff123456));
Result:
- ff123456 is printed out to the console.
- No compile errors.
ER (Expected result):
- Engine.intToHexString() should appear in the API list.
- The pull request went through Aug 2022 so there might be something missing from that, or missing documentation.
- see Added Engine.intToHexString #312
-
@hujackus yup, it was missing the doc string in the header file so it wasn't picked up by the API generator. It's fixed now.