From 956bd5b50ba1e1f0c537aa44eb9367c9195f7ecd Mon Sep 17 00:00:00 2001 From: Mees van der Wijk Date: Thu, 28 Aug 2025 19:56:11 +0200 Subject: [PATCH] Checking stuff --- ModuleClientAPI.md | 9 ++++----- 1 file changed, 4 insertions(+), 5 deletions(-) diff --git a/ModuleClientAPI.md b/ModuleClientAPI.md index b9e627f..dbaa9c5 100644 --- a/ModuleClientAPI.md +++ b/ModuleClientAPI.md @@ -187,11 +187,10 @@ Register a listener for when a reference property updates in a scene change. The api.onReferencePropertyChange(propertyId, callback); ``` -| Argument | Type | Description | -| ---------- | --------------------------------------------- | ------------------------------------------------------------------------------------------------------------------------------------ | -| propertyId | string | The property ID that the listener will receive. | -| callback | ( value:any, transitionDuration:number ):void | Function that receives the new property value.

**transitionDuration** The duration in milliseconds the transition should be. | -| kaas | k |
**value**anyThe changed value of the property.
| +| Argument | Type | Description | +| ---------- | ----------------------------------------------------- | ---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------- | +| propertyId | string | The property ID that the listener will receive. | +| callback | ( property:Property, transitionDuration:number ):void | Callback for when the reference property value changes.
**property**[Property](./ModuleClientAPIProperty)Property instance.
**transitionDuration**numberThe duration in milliseconds the transition should be.
| ### getReferenceProperties