Daniel Ferreira Monteiro Alves

Results 30 comments of Daniel Ferreira Monteiro Alves

@vpenades Hey, man! What if we add an encoding plugin support for your library? I don't know if we have that today. This way, people interested can create a plugin...

Something came into my mind and I will give it a try because that might solve our problems... Apparently, Draco is being exposed as WASM and, as far as I...

My time is a bit limited but count on me if you need some help!

> This looks suspicious. Why does it say localhost and not 127.0.0.1 which is what is registered in Consul? Can you show the remote config for both nodes? are there...

Yes, I'm using custom serializers but, in theory, I should have received a warning if an unknown message was attempt to be serialized. I've put a fallback serializer to raise...

@NaridaL @mweststrate Should I update the README manually or did I miss any step? Locally, it looks to be working (build and tests). :)

I guess you are in the same scenario as me... I need to verify if a box will suffer a collision before actually moving it to do some actions... I'm...

It looks like you read my mind! That works very perfectly for me! The API is a bit overwhelmed but the result is the expected! I will try using the...

@jbraumann I did the following. I'm still evolving the code but maybe it can help you. ```csharp public struct CollisionQuery(Simulation simulation) { private const float SweepMinimumProgression = 1e-1f; private const...

I just realized IEnumerable will be on the heap... so maybe I can use the same idea of your enumerator to keep them on the stack instead.