VitaminCpp
VitaminCpp
This is a critical issue, because currently I'm not able to inject C++-only parameters into v8pp::module exported modules. JS: `var myVar = objectA.objectB.object.C.prop;` C++: ``` v8pp::module objectA(ctx.isolate()); v8pp::module objectB(ctx.isolate()); v8pp::module...
- Adjusted replication to resend unchanged state only to missing clients. - Skip server serialization when no recipients, and downgrade unknown-despawn noise. **Test scenario:** - Checkout and build https://github.com/FlaxEngine/ArizonaFrameworkSample. -...
Aligned NetworkReplicatedObject equality with its hash (compare ObjectId, not pointer).
- Compact now iterates over the old bucket array using the saved oldSize, and frees with that size, avoiding out-of-bounds when _size changes. - If reinsertion finds no free slot...
### Description Currently `Guid::GetHash()` is implemented like this: ```cpp inline uint32 GetHash(const Guid& key) { return static_cast(key.A ^ key.B ^ key.C ^ key.D); } ``` The simple XOR of A^B^C^D...
### Description At the moment, the performance in Flax 1.11 under Windows from the DX12/Vulkan renderer leaves something to be desired compared to the DX11 renderer. ## DX12: - I...