UpdatableMember Class
Namespace: Stride.UpdaterAssembly: Stride.Engine.dll
Describes how to access an object member so that it can be updated by the UpdateEngine.
System.Object →
UpdatableMember
Derived from UpdatableMember: UpdatableField UpdatablePropertyBase
public abstract class UpdatableMember
| Name | Description | |
|---|---|---|
| Properties | ||
| MemberType | Gets the type of the member. |
|
| Methods | ||
| CreateEnterChecker() | Called by Compile(Type, List<UpdateMemberInfo>) to generate additional checks when entering an object (typically out of bound checks). |
|
Properties
MemberType
Gets the type of the member.
public abstract Type MemberType { get; }
Property Value
| Type | Description |
|---|---|
| System.Type |
Methods
CreateEnterChecker()
Called by Compile(Type, List<UpdateMemberInfo>) to generate additional checks when entering an object (typically out of bound checks).
public virtual EnterChecker CreateEnterChecker()
Returns
| Type | Description |
|---|---|
| EnterChecker | The created enter checker (or null if not needed). |