Table of Contents

Enum ValidationMode

Namespace
KeenEyes
Assembly
KeenEyes.Abstractions.dll

Specifies the validation mode for component constraints in a World.

public enum ValidationMode

Fields

DebugOnly = 2

Validation is only enabled in debug builds (when DEBUG is defined). This provides safety during development without production overhead.

Disabled = 1

Validation is disabled. No constraint checks are performed. Use this for maximum performance in production builds.

Enabled = 0

Validation is always enabled. All component constraints are checked. This is the default mode.