David Konsumer

Results 457 comments of David Konsumer

I added a stub setup in tools/postinstall.js. It will load very fast if you have `build/Release/node-raylib.node` and download a tagged release if we have one (from CI) or build it,...

I think the reason node-sass is named that way, is because it makes a CLI tool, but the original CLI is in another language (and original [npm sass](https://www.npmjs.com/package/sass) package uses...

Looks like now the original is dart compiled to native js, but it used to be ruby or C or something.

If you want to modify the diagram, here is the source I used: ``` graph TD ENV{Is an env-var set to force build?} FS{Is it already built locally in target...

I started working on idea [here](https://github.com/konsumer/node-raylib-134) and made @RobLoach and @twuky collabs. Current repo illustrates issue where the external-computed & raylib FPS seem to disagree. If you run it, you...

I will probably use this anyway, in my own project, because it makes things work right (like console.log and async input callbacks) but it may not be a good thing...

I tried with `SetTargetFPS(0)` and without and it had the same results. I mean, it works, but it thinks it's a different FPS than it really is. It effects other...

`await MaintainFPS(60)` works [using this](https://github.com/konsumer/node-raylib-134/blob/main/async.js), raylib just tracks the wrong FPS. I think this would still have the same problems with FPS, and I'm not sure it improves on that...

> In order for the node application to continue running, it will need a macro task registered. The while loop in the examples needs to be broken up into slices,...

> In fact, I will clearImmediate() on this conversation and my process will exit(). @dananderson Hmm, obviously that is up to you, but I am really just trying to understand...