Kevin Leung

Results 283 comments of Kevin Leung

How does performance compare when using scripting instead of complied classes? Not very familiar witht hscript :cry:

+1 for line thickness

Instead of `Sprite extends Visual extends Entity`: ``` haxe class Sprite extends Visual (extends Entity) { // lots of sprite specific codes.... } ``` could it become `Sprite is simply...

I am just trying to give some suggestions that makes Luxe easy to use for both new users and advanced users.

I can confirm this with node v8.11.4 (no electron)

I noticed that `.select` is build on top of `.over` which links the derived signal to the root one. So technically this is not a leak but the memory is...

Should WeakRef be used for the ondispose hook so it doesn't keep the derived signal alive?

Current workaround is to explicitly type-hint the NEVER value: ```haxe final promise = if (v == 42) (Promise.NEVER:Promise) else "okay"; ```