Thomas ten Cate

Results 56 comments of Thomas ten Cate

Any progress on this issue? Clipping is ugly and makes borders nearly unusable :(

I'm using this workaround now: ``` haxe package; import flash.display.BitmapData; import flixel.FlxG; import flixel.text.FlxText; import flixel.util.FlxColor; /** * Subclass of FlxText that incorporates a fix for * https://github.com/HaxeFlixel/flixel/issues/1025. Use this...

The [official `grpc_cli` client](https://grpc.io/grpc/cpp/md_doc_command_line_tool.html) also supports – even _requires_ – server reflection. Might be useful to look at its code.

Also ran into this. In my case, it was due to `FlxMouseEventManager` remaining active even though the parent state's `update` method was not being called. Workaround: in your parent state,...

All of the above. Plus the ability to implement useful traits like `Debug` and `Display` on the type (which would have made #250 more idiomatic).

In what way is that better than an `enum` though? If it's purely to allow unknown values through, we can also do that with an `enum`.

I was also bitten by this. I _suspect_ that the FBX exporter in Blender has changed since the wiki page was written, so it does not only store the axis...

I hacked around this in my fork, but my approach is probably not the best way so I doubt it's worth a PR: https://github.com/ttencate/avro-rs/commit/1c89f55134797e2ed7825f6434cd3f1efc1fe48b

I tried the second approach because I could in principle do it inside my own crate, but it doesn't seem to be possible. I required a `Default` implementation for the...

Not sure I understand. I tried writing my own similar library that carried a unit along with each value, but ran into a similar limitation. There is no way to...