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(IntPtr)

Gets a reference object from a property.

public abstract object GetObject(IntPtr obj)

Parameters

obj IntPtr

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

Returns

object

The object value from the property.

SetObject(IntPtr, object)

Sets a reference object from a property.

public abstract void SetObject(IntPtr obj, object data)

Parameters

obj IntPtr

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

data object

The object value to set.