/// <summary> /// Removes one or more flags from the current set of entity flags (bitwise AND NOT). /// </summary> /// <param name="flags">Combination of <see cref="EntityFlags"/> to remove.</param> public void ClearFlags(EntityFlags flags) { NativeHandle.ClearFlags((uint)flags); }