Enum ValidationMode
- Namespace
- KeenEyes
- Assembly
- KeenEyes.Abstractions.dll
Specifies the validation mode for component constraints in a World.
public enum ValidationMode
Fields
DebugOnly = 2Validation is only enabled in debug builds (when DEBUG is defined). This provides safety during development without production overhead.
Disabled = 1Validation is disabled. No constraint checks are performed. Use this for maximum performance in production builds.
Enabled = 0Validation is always enabled. All component constraints are checked. This is the default mode.