Table of Contents

Class EnterChecker

Namespace
Stride.Updater
Assembly
Stride.Engine.dll

Provides a way to perform additional checks when entering an object (typically out of bounds checks).

public abstract class EnterChecker
Inheritance
EnterChecker

Methods

CanEnter(object)

Called by Run(object, CompiledUpdate, nint, UpdateObjectData[]) to perform additional checks when entering an object (typically out of bounds checks).

public abstract bool CanEnter(object obj)

Parameters

obj object

The object being entered.

Returns

bool

True if checks succeed, false otherwise.