WaitUntilEqualsT(CustomPropertyValueT, CustomPropertyValueT) Method |
Suspend coroutine until a custom property value becomes equal to another custom property value.
Namespace: Demo3D.NativeAssembly: Demo3D.Core (in Demo3D.Core.dll) Version: 19.00.00
Syntaxpublic static ITask UntilEquals<T>(
CustomPropertyValue<T> property1,
CustomPropertyValue<T> property2
)
Parameters
- property1 CustomPropertyValueT
- Custom property to suspend until value is set to given value.
- property2 CustomPropertyValueT
- Custom property value to suspend until equal to.
Type Parameters
- T
[Missing <typeparam name="T"/> documentation for "M:Demo3D.Native.Wait.UntilEquals``1(Demo3D.Native.CustomPropertyValue{``0},Demo3D.Native.CustomPropertyValue{``0})"]
Return Value
ITaskA task representing the wait for custom property value to become equal to another custom property value.
See Also