Maybee Rezbit

Results 23 issues of Maybee Rezbit

Fixes #264 (and possibly #297 since crashing is what occurs currently with Greenworks on later Electron releases). The latest releases of Electron prevent "non-context-aware" native modules. By Replacing `NODE_MODULE` with...

This pull seeks to provide additional header-file configuration for the Haxe/C++ target by adding three built-in metadatas: `@:headerDefinitionPrepend`, `@:headerDefinitionAppend`, and `@:headerClassNamePrepend`. `@:headerDefinitionPrepend` places text directly before the definition of a...

Whenever I use a font without utf8 characters, the assert at [`include/bn_sprite_font.h:119`](https://github.com/GValiente/butano/blob/6ff67515699cbe3dff4721766c1ceed0025dd09a/butano/include/bn_sprite_font.h#L119C10-L119C10) fails at compile-time. It fixes itself if I add just a single utf8 character, so not a huge...

Another typed metadata proposal. Similar to previous proposal with relevant discussion [here](https://github.com/HaxeFoundation/haxe-evolution/pull/73). Relevant wiki content [here](https://github.com/HaxeFoundation/haxe-evolution/wiki/Ideas#typed-metadata). Based off of @nadako's [comment](https://github.com/HaxeFoundation/haxe-evolution/pull/73#issuecomment-634289234) which seems to be the most popular idea. ```haxe...

Pass block expressions to macro functions like this: ```haxe macro function myMacroFunc(num: Int, e: TrailingExpr): Expr; // --- myMacroFunc(123) { // block expr } ``` [Rendered version](https://github.com/RobertBorghese/haxe-evolution/blob/master/proposals/0000-trailing-block-expr.md)

https://github.com/SomeRanDev/reflaxe/blob/7bc1352160d638856d15e7c96aa3d0a004741767/src/reflaxe/compiler/EverythingIsExprSanitizer.hx#L466 Also fix: ``` functionRef = something ``` getting converted to: ``` function() { functionRef(); } = something ```

Add a method to retain the order of fields from Haxe to target language https://discord.com/channels/162395145352904705/1200065966445449286/1213570461758136410

How to make enums? Is there a variant type for C#? Would it be appropriate to just store arbitrary data as `object`, then cast upon request if the index matches...

TODO

Not a requirement, but a lot of people would probably expect eventually. Seem like Haxe currently uses a custom ocaml lib, seems like a huge undertaking??? https://github.com/HaxeFoundation/ocamllibs/tree/master/ilib From what I...

Maybe TODO

This adds a new shader uniform hint for `int` named `hint_flags`. A port of the `@export_flags` feature from GDScript. ```glsl uniform int outline_features : hint_flags("Anti-alias", "Depth Limit", "Grazing Angle Fix")...

enhancement
feature proposal
topic:shaders