Table of Contents

Class UpdatableCustomAccessor

Namespace
Stride.Updater
Assembly
Stride.Engine.dll

Provide a custom implementation to access a member by the UpdateEngine.

public abstract class UpdatableCustomAccessor : UpdatablePropertyBase
Inheritance
UpdatableCustomAccessor
Inherited Members

Methods

GetObject(nint)

Gets a reference object from a property.

public abstract object GetObject(nint obj)

Parameters

obj nint

The object encoded as a native pointer (UpdateEngine will make sure it is pinned).

Returns

object

The object value from the property.

SetObject(nint, object)

Sets a reference object from a property.

public abstract void SetObject(nint obj, object data)

Parameters

obj nint

The object encoded as a native pointer (UpdateEngine will make sure it is pinned).

data object

The object value to set.