This commit is contained in:
aozhiwei 2023-09-06 16:04:43 +08:00
parent 1dbbf70751
commit d5a06edd09
2 changed files with 2 additions and 2 deletions

View File

@ -97,7 +97,7 @@ namespace mtb
std::string navmesh_file_; std::string navmesh_file_;
public: public:
std::bitset<21> __flags__; std::bitset<27> __flags__;
}; };
}; };

View File

@ -98,7 +98,7 @@ namespace mtb
meta_class->SetSimpleField(23, "star_condition", a8::reflect::ET_INT32, my_offsetof2(Map, star_condition_)); meta_class->SetSimpleField(23, "star_condition", a8::reflect::ET_INT32, my_offsetof2(Map, star_condition_));
meta_class->SetSimpleField(24, "is_open", a8::reflect::ET_INT32, my_offsetof2(Map, is_open_)); meta_class->SetSimpleField(24, "is_open", a8::reflect::ET_INT32, my_offsetof2(Map, is_open_));
meta_class->SetSimpleField(25, "ground_sampling_pos", a8::reflect::ET_STRING, my_offsetof2(Map, ground_sampling_pos_)); meta_class->SetSimpleField(25, "ground_sampling_pos", a8::reflect::ET_STRING, my_offsetof2(Map, ground_sampling_pos_));
meta_class->SetSimpleField(26, "navmesh_fle", a8::reflect::ET_STRING, my_offsetof2(Map, navmesh_file_)); meta_class->SetSimpleField(26, "navmesh_file", a8::reflect::ET_STRING, my_offsetof2(Map, navmesh_file_));
} }
return meta_class; return meta_class;
} }