EnterChecker Class
Namespace: Stride.UpdaterAssembly: Stride.Engine.dll
Provides a way to perform additional checks when entering an object (typically out of bounds checks).
System.Object →
EnterChecker
Derived from EnterChecker:
public abstract class EnterChecker
Name | Description | |
---|---|---|
Methods | ||
CanEnter(Object) | Called by Run(Object, CompiledUpdate, IntPtr, UpdateObjectData[]) to perform additional checks when entering an object (typically out of bounds checks). |
Methods
CanEnter(Object)
Called by Run(Object, CompiledUpdate, IntPtr, UpdateObjectData[]) to perform additional checks when entering an object (typically out of bounds checks).
public abstract bool CanEnter(object obj)
Parameters
Type | Name | Description |
---|---|---|
System.Object | obj | The object being entered. |
Returns
Type | Description |
---|---|
System.Boolean | True if checks succeed, false otherwise. |