-
**Environment**
macos monterey 12.1
haxe 4.2.4
hxcpp 4.2.1
The error can be reproduced by compiling the following two modules for the cpp target.
```
//LogManager.hx
package log;
@:nativ…
-
# Hxaria, Terraria like terrain in HaXe and WebGL
http://mikecann.co.uk/personal-project/hxaria-terraria-like-terrain-in-haxe-and-webgl/
-
# 5,000,000 Chrome Crawlers? Why not [haXe & WebGL]
http://mikecann.co.uk/programming/5000000-chrome-crawlers-why-not-haxe-webgl/
-
I'm having trouble with the "Too late to register class" error.
https://github.com/HeapsIO/hxbit/issues/24
https://github.com/HaxeFoundation/haxe/issues/4091
https://github.com/HaxeFoundation/hax…
-
Dropdown without "dropdownWidth" crashes on android when tap.
stacktrace:
2021-07-06 17:54:25.010 2956-2983/wsstudio.inventory E/HXCPP: Called from hxcpp::__hxcpp_main
2021-07-06 17:54:25.010…
-
# Combine two or more structures - Macros - Haxe programming language cookbook
Haxe makes it easy to define extensions for a typedef, but there is no easy way to combine the values of two or more str…
-
# GPU State Preserving Particle Systems with WebGL & HaXe
http://mikecann.co.uk/personal-project/gpu-state-preserving-particle-systems-with-webgl-haxe/
-
```haxe
class Test {
static function main() {
trace("Haxe 4.2 overload example");
var doc = new Document();
doc.append('hello');
doc.append(new Image());
doc.append(new Table());
}…
-
# Chrome Crawler, HaXe, Three.js, WebGL and 2D Sprites
http://www.mikecann.co.uk/programming/chrome-crawler-haxe-three-js-webgl-and-2d-sprites/
-
For example 😅
```haxe
inline function foo() {}
function main() {
foo();
}
```
Will still generate a
```cpp
void _Main::Main_Fields_::foo() {
}
```
I only noticed this because I am …