KungPhoo
KungPhoo
Hi, would it be possible to get a simple microphone recording plugin? I suggest some API like: bool record_start( ); AudioSourceInstance\* record_stop(); // no idea about the return value -...
Hi, and thanks for your work. I got it working and get some nice results. I was wondering, if I can use 10 noded tetrahedron elements (with higher order) for...
Hi. I'm not an electronic expert, and currently power an ESP32-CAM with a solar charged battery. I use a TP4056 for the charging I use a TP4056. My solar panel...
fplGamepadStates uses a static array with size FPL_MAX_GAMEPAD_STATE_COUNT. In Windows builds it's defined as XUSER_MAX_COUNT = 4. In Liunx builds, there is FPL__LINUX_MAX_GAME_CONTROLLER_COUNT = 4; `fpl_platform_api bool fplPollGamepadStates(fplGamepadStates* outStates)` checks...
The gamepads are polled into the indices [4..] so it doesn't break backwards compatibility.
I implemented them. Can you copy/paste them for the next update? ```C++ // fplCopyString has src and dst swapped, so here's strcpy/strcat implementations static void fplMyStrncpy(char* dst, const char* src,...
When I type 'q' on the keyboard, I get the keypress ``event.keyboard.keyCode`` of 0x18 "0x17-0x19 IME-Keys" and an input event for 0x71 = 'q'. On Windows, I get keypress 0x51='Q'...
Hi, awesome work you did! When polling events, and pressing Shift+2, I get event.keyboard.keyCode = 50, which is '2'. However, I was expecting the quote '"' 0x22 code, instead. Did...