@rtsdk/topia 0.15.0 → 0.15.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +2 -1
- package/dist/index.d.ts +6 -1
- package/dist/index.js +2 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -42589,7 +42589,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
42589
42589
|
});
|
|
42590
42590
|
* ```
|
|
42591
42591
|
*/
|
|
42592
|
-
drop(asset, { assetScale = 1, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer = false, layer0, layer1, position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }) {
|
|
42592
|
+
drop(asset, { assetScale = 1, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer = false, layer0, layer1, position: { x, y }, sceneDropId, text, textColor, textFontFamily, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }) {
|
|
42593
42593
|
return __awaiter(this, void 0, void 0, function* () {
|
|
42594
42594
|
let specialType = null;
|
|
42595
42595
|
if (layer0 || layer1)
|
|
@@ -42615,6 +42615,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
42615
42615
|
specialType,
|
|
42616
42616
|
text,
|
|
42617
42617
|
textColor,
|
|
42618
|
+
textFontFamily,
|
|
42618
42619
|
textSize,
|
|
42619
42620
|
textWeight,
|
|
42620
42621
|
textWidth,
|
package/dist/index.d.ts
CHANGED
|
@@ -1885,6 +1885,10 @@ interface WorldInterface extends SDKInterface, WorldDetailsInterface {
|
|
|
1885
1885
|
isPartial?: boolean;
|
|
1886
1886
|
isReversed?: boolean;
|
|
1887
1887
|
}): Promise<DroppedAsset[]>;
|
|
1888
|
+
fetchDroppedAssetsBySceneDropId({ sceneDropId, uniqueName, }: {
|
|
1889
|
+
sceneDropId: string;
|
|
1890
|
+
uniqueName?: string;
|
|
1891
|
+
}): Promise<DroppedAsset[]>;
|
|
1888
1892
|
updateCustomTextDroppedAssets(droppedAssetsToUpdate: Array<DroppedAsset>, style: object): Promise<object>;
|
|
1889
1893
|
dropScene({ assetSuffix, position, sceneId, }: {
|
|
1890
1894
|
assetSuffix: string;
|
|
@@ -2268,7 +2272,7 @@ declare class DroppedAssetFactory extends SDKController {
|
|
|
2268
2272
|
});
|
|
2269
2273
|
* ```
|
|
2270
2274
|
*/
|
|
2271
|
-
drop(asset: Asset, { assetScale, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer, layer0, layer1, position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }: {
|
|
2275
|
+
drop(asset: Asset, { assetScale, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer, layer0, layer1, position: { x, y }, sceneDropId, text, textColor, textFontFamily, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }: {
|
|
2272
2276
|
assetScale?: number;
|
|
2273
2277
|
flipped?: boolean;
|
|
2274
2278
|
clickType?: string;
|
|
@@ -2290,6 +2294,7 @@ declare class DroppedAssetFactory extends SDKController {
|
|
|
2290
2294
|
sceneDropId?: string;
|
|
2291
2295
|
text?: string;
|
|
2292
2296
|
textColor?: string;
|
|
2297
|
+
textFontFamily?: string;
|
|
2293
2298
|
textSize?: number;
|
|
2294
2299
|
textWeight?: string;
|
|
2295
2300
|
textWidth?: number;
|
package/dist/index.js
CHANGED
|
@@ -42587,7 +42587,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
42587
42587
|
});
|
|
42588
42588
|
* ```
|
|
42589
42589
|
*/
|
|
42590
|
-
drop(asset, { assetScale = 1, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer = false, layer0, layer1, position: { x, y }, sceneDropId, text, textColor, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }) {
|
|
42590
|
+
drop(asset, { assetScale = 1, clickType, clickableDisplayTextDescription, clickableDisplayTextHeadline, clickableLink, clickableLinkTitle, flipped, interactivePublicKey, isInteractive, isForceLinkInIframe, isOpenLinkInDrawer, isTextTopLayer = false, layer0, layer1, position: { x, y }, sceneDropId, text, textColor, textFontFamily, textSize, textWeight, textWidth, uniqueName, urlSlug, yOrderAdjust, }) {
|
|
42591
42591
|
return __awaiter(this, void 0, void 0, function* () {
|
|
42592
42592
|
let specialType = null;
|
|
42593
42593
|
if (layer0 || layer1)
|
|
@@ -42613,6 +42613,7 @@ class DroppedAssetFactory extends SDKController {
|
|
|
42613
42613
|
specialType,
|
|
42614
42614
|
text,
|
|
42615
42615
|
textColor,
|
|
42616
|
+
textFontFamily,
|
|
42616
42617
|
textSize,
|
|
42617
42618
|
textWeight,
|
|
42618
42619
|
textWidth,
|
package/package.json
CHANGED