-
Notifications
You must be signed in to change notification settings - Fork 26
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bump EnTT to 3.8.0 #55
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks good, just needs to have the edyn::
namespace removed from most places. Thanks!
include/edyn/comp/continuous.hpp
Outdated
@@ -18,14 +18,14 @@ struct continuous { | |||
|
|||
template<typename... Component> | |||
void insert() { | |||
((types[size++] = entt::type_index<Component>::value()), ...); | |||
((types[size++] = entt::type_id<Component>().hash()), ...); |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I think we should be using entt::type_id<T>().seq()
here which is the actual replacement for entt::type_index<T>::value()
. Also applies to the next few cases.
No description provided.