We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
It seems like the access modifiers sometimes prevent the field to be added in the foldouts for child classes. Example:
public class Parent : MonoBehaviour { #region Serialized fields [field: Foldout("Parent", true)] [field: SerializeField] protected bool AAA; [field: SerializeField] protected bool BBB; [field: SerializeField] public bool DDD { get; private set; } [field: SerializeField] public bool EEE { get; protected set; } [field: SerializeField] public bool FFF { protected get; set; } [field: SerializeField] public bool GGG; [field: SerializeField] private protected bool HHH; #endregion } public class Child : Parent { #region Serialized fields [field: Foldout("Child", true)] [field: SerializeField] private bool CCC; #endregion }
The text was updated successfully, but these errors were encountered:
No branches or pull requests
It seems like the access modifiers sometimes prevent the field to be added in the foldouts for child classes.
Example:
The text was updated successfully, but these errors were encountered: