We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ca4f01a commit e527ac1Copy full SHA for e527ac1
Runtime/EntityComponent.cs
@@ -6,7 +6,7 @@ public abstract class EntityComponent<EntityComponentType, EntitySystemType> : U
6
where EntitySystemType : EntitySystem<EntitySystemType, EntityComponentType>, new() {
7
8
/// Defines whether this component is enabled.
9
- private bool isEnabled = false;
+ public bool isEnabled { get; private set; } = false;
10
11
/// Defines whether this component has been initialized.
12
private bool isInitialized = false;
0 commit comments