Joe Pea
Joe Pea
I'd never used workbench settings before, so I had no idea why even after uninstalling the plugin the colors were staying on my project windows. Finally decided to head over...
Maybe a jsfiddle would be nice to play with.
Yeah, it's like false advertisement. :D It'd be nice to have a default.
Nevermind, I see the quit function in the code. You should add every function to the documentation.
I installed coffeescript and got it working. Could you please make this not depend on CoffeeScript though, or is that too much trouble?
I was able to make it run by doing running coffee --compile on it, but then, like mentioned on stackoverflow, the package is not `require()`able the normal way. I agree...
Here is a TypeScript program compiled to WebAssembly with AssemblyScript, using WebGL APIs outside of a browser in Node.js (the JS glue code calls the `webgl-raub` package): https://user-images.githubusercontent.com/297678/107162186-5f2fbc80-6956-11eb-90d1-13d351fb5c55.mp4 The WebGL...
Oops, I forgot links! ASWebGLue: https://github.com/battlelinegames/ASWebGLue LUME Glas (port of Three.js to AssemblyScript that will likely fork direction): https://github.com/lume/glas (part of the LUME project, http://github.com/lume/lume) AssemblyScript's #gamedev Discord channel where...
It is also important to consider that unused imports can have intended side effects, and can also be used to change module evaluation order, which is important in solving cyclic...
@lgarczyn as @ktsn already mentioned prior, the type of `this` of a class cannot be defined by the return value of a method in TypeScript. It is possible for that...