player-03
player-03
The Entity.onManagedUpdate() method caches the size of its mChildren array before iterating through it and updating its children. There are multiple valid reasons for these children to remove themselves during...
The Scroller class [deliberately prevents scroll events from bubbling](https://github.com/feathersui/feathersui-openfl/blob/168d6144f8c2601f9c1a6f60dbce9166ba4e1e31/src/feathers/utils/Scroller.hx#L1450-L1451) in an attempt to disable `preventDefault()`. But as far as I'm aware*, there's no benefit to disabling `preventDefault()`. In fact, `preventDefault()`...
When customizing a `ListView` or similar component, you may want to set a button's state in response to your own input method. The safest and easiest way to do this...
The `PopUpListView` class (correctly) opens on a `MOUSE_DOWN` event. However, if the user drags down to the list item they want and releases the mouse button, nothing happens. Or if...
[Haxelib's latest haxelib.json file](https://github.com/HaxeFoundation/haxelib/blob/development/haxelib.json) says version 4.0.2, but [only version 3.3.0 was ever published](https://lib.haxe.org/p/haxelib/). As a result there's no easy way to update it: ```text $ haxelib version 3.3.0 $...
Version 22 changed the NDK's structure, meaning some files and folders aren't where hxcpp expects them. --- To test this, create the following three files, and compile with `haxelib run...
Since hxcpp doesn't run from the NDK directory, it requires an absolute path to be able to access source.properties. Getting the version from the directory name is unaffected, which is...
I'm not a fan of how Lime's submodules have been structured up until now. They were created by hand-copying files, and so in order to update them, you have to...
Plus, add documentation to help avoid the sort of confusion we saw in #1295. Also, closes #1295.