Is using things like Set, Add and Remove slow flecs down if I do it in a query/system? #96
Answered
by
BeanCheeseBurrito
Shadowblitz16
asked this question in
Q&A
-
I want to make a simple wrapper around flecs.net mainly because I am making a engine and I want to expose it to a modding api eventually, Is wrapping around Set, Add, Get and Remove cause any performance penalties if I do it within a system or query? |
Beta Was this translation helpful? Give feedback.
Answered by
BeanCheeseBurrito
Jul 26, 2025
Replies: 1 comment 1 reply
-
I don't think there'll be any noticeable overhead if you're only wrapping around |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
Shadowblitz16
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
I don't think there'll be any noticeable overhead if you're only wrapping around
.Set
,.Add
, and.Get
.