Fix build warnings on the latest XCode

This commit is contained in:
Wojtek Figat
2023-11-14 19:03:46 +01:00
parent 8d3cb8953c
commit bc3107d1db
6 changed files with 57 additions and 33 deletions

View File

@@ -33,12 +33,12 @@ API_CLASS(Abstract) class FLAXENGINE_API Actor : public SceneObject
friend Prefab;
friend PrefabInstanceData;
protected:
int16 _isActive : 1;
int16 _isActiveInHierarchy : 1;
int16 _isPrefabRoot : 1;
int16 _isEnabled : 1;
int16 _drawNoCulling : 1;
int16 _drawCategory : 4;
uint16 _isActive : 1;
uint16 _isActiveInHierarchy : 1;
uint16 _isPrefabRoot : 1;
uint16 _isEnabled : 1;
uint16 _drawNoCulling : 1;
uint16 _drawCategory : 4;
byte _layer;
StaticFlags _staticFlags;
Transform _localTransform;