Click or drag to resize

WaitUntilNotEqualsT(CustomPropertyValueT, T) Method

Suspend coroutine until a custom property value becomes not equal to a given value.

Namespace: Demo3D.Native
Assembly: Demo3D.Core (in Demo3D.Core.dll) Version: 19.00.00
Syntax
C#
public static ITask UntilNotEquals<T>(
	CustomPropertyValue<T> property,
	T value
)

Parameters

property  CustomPropertyValueT
Custom property to suspend until value is not set to given value.
value  T
Value to suspend until not equal to.

Type Parameters

T

[Missing <typeparam name="T"/> documentation for "M:Demo3D.Native.Wait.UntilNotEquals``1(Demo3D.Native.CustomPropertyValue{``0},``0)"]

Return Value

ITask
A task representing the wait for custom property value to become not equal to the given value.
See Also