@dcl/playground-assets 7.7.0 → 7.7.1-12789404522.commit-01f4702
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/alpha.d.ts +43 -8
- package/dist/beta.d.ts +43 -8
- package/dist/index.bundled.d.ts +43 -8
- package/dist/index.js +6 -6
- package/dist/index.js.map +3 -3
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +43 -8
- package/dist/tsdoc-metadata.json +1 -1
- package/etc/playground-assets.api.json +385 -7
- package/etc/playground-assets.api.md +29 -0
- package/package.json +4 -4
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/sdk",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.7.
|
4
|
+
"version": "7.7.1-12789404522.commit-01f4702",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
7
|
"@dcl/ecs": "file:../ecs",
|
@@ -35,5 +35,5 @@
|
|
35
35
|
},
|
36
36
|
"types": "./index.d.ts",
|
37
37
|
"typings": "./index.d.ts",
|
38
|
-
"commit": "
|
38
|
+
"commit": "01f47021cb864d6d8e8abd32f2d5bf8dc9856e91"
|
39
39
|
}
|
@@ -4579,9 +4579,9 @@ export declare interface PBMaterial_PbrMaterial {
|
|
4579
4579
|
castShadows?: boolean | undefined;
|
4580
4580
|
/** @deprecated Alpha textures are no longer supported on PBRMaterial and UnlitMaterial.alphaTexture should be used instead. */
|
4581
4581
|
alphaTexture?: TextureUnion | undefined;
|
4582
|
-
/** default = null */
|
4582
|
+
/** default = null. Note that tilling and offset properties are ignored for this texture. */
|
4583
4583
|
emissiveTexture?: TextureUnion | undefined;
|
4584
|
-
/** default = null */
|
4584
|
+
/** default = null. Note that tilling and offset properties are ignored for this texture. */
|
4585
4585
|
bumpTexture?: TextureUnion | undefined;
|
4586
4586
|
/** default = white; */
|
4587
4587
|
albedoColor?: PBColor4 | undefined;
|
@@ -4623,7 +4623,7 @@ export declare interface PBMaterial_UnlitMaterial {
|
|
4623
4623
|
castShadows?: boolean | undefined;
|
4624
4624
|
/** default = white; */
|
4625
4625
|
diffuseColor?: PBColor4 | undefined;
|
4626
|
-
/** default = null */
|
4626
|
+
/** default = null. Note that tilling and offset properties are ignored for this texture. */
|
4627
4627
|
alphaTexture?: TextureUnion | undefined;
|
4628
4628
|
}
|
4629
4629
|
|
@@ -5230,6 +5230,9 @@ export declare interface PBTween {
|
|
5230
5230
|
} | {
|
5231
5231
|
$case: "scale";
|
5232
5232
|
scale: Scale;
|
5233
|
+
} | {
|
5234
|
+
$case: "textureMove";
|
5235
|
+
textureMove: TextureMove;
|
5233
5236
|
} | undefined;
|
5234
5237
|
/** default true (pause or running) */
|
5235
5238
|
playing?: boolean | undefined;
|
@@ -7013,12 +7016,9 @@ export declare interface Texture {
|
|
7013
7016
|
wrapMode?: TextureWrapMode | undefined;
|
7014
7017
|
/** default = FilterMode.Bilinear */
|
7015
7018
|
filterMode?: TextureFilterMode | undefined;
|
7016
|
-
/**
|
7017
|
-
* Final uv = offset + (input_uv * tiling)
|
7018
|
-
* Offset for texture positioning.
|
7019
|
-
*/
|
7019
|
+
/** Final uv = offset + (input_uv * tiling) */
|
7020
7020
|
offset?: PBVector2 | undefined;
|
7021
|
-
/** Tiling multiplier for texture repetition. */
|
7021
|
+
/** default = Vector2.One; Tiling multiplier for texture repetition, only works for the texture property in PbrMaterial or UnlitMaterial. */
|
7022
7022
|
tiling?: PBVector2 | undefined;
|
7023
7023
|
}
|
7024
7024
|
|
@@ -7078,6 +7078,37 @@ export declare interface TextureHelper {
|
|
7078
7078
|
*/
|
7079
7079
|
export declare type TextureMode = 'nine-slices' | 'center' | 'stretch';
|
7080
7080
|
|
7081
|
+
/**
|
7082
|
+
* This tween mode allows to move the texture of a PbrMaterial or UnlitMaterial.
|
7083
|
+
* You can also specify the movement type (offset or tiling)
|
7084
|
+
*/
|
7085
|
+
/**
|
7086
|
+
* @public
|
7087
|
+
*/
|
7088
|
+
export declare interface TextureMove {
|
7089
|
+
start: PBVector2 | undefined;
|
7090
|
+
end: PBVector2 | undefined;
|
7091
|
+
/** default = TextureMovementType.TMT_OFFSET */
|
7092
|
+
movementType?: TextureMovementType | undefined;
|
7093
|
+
}
|
7094
|
+
|
7095
|
+
/**
|
7096
|
+
* @public
|
7097
|
+
*/
|
7098
|
+
export declare namespace TextureMove {
|
7099
|
+
export function encode(message: TextureMove, writer?: _m0.Writer): _m0.Writer;
|
7100
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): TextureMove;
|
7101
|
+
}
|
7102
|
+
|
7103
|
+
/**
|
7104
|
+
* @public
|
7105
|
+
*/
|
7106
|
+
export declare const enum TextureMovementType {
|
7107
|
+
/** TMT_OFFSET - default = TextureMovementType.TMT_OFFSET */
|
7108
|
+
TMT_OFFSET = 0,
|
7109
|
+
TMT_TILING = 1
|
7110
|
+
}
|
7111
|
+
|
7081
7112
|
/**
|
7082
7113
|
* @public
|
7083
7114
|
*/
|
@@ -7227,6 +7258,10 @@ export declare interface TweenHelper {
|
|
7227
7258
|
* @returns a move mode tween
|
7228
7259
|
*/
|
7229
7260
|
Scale: (scale: Scale) => PBTween['mode'];
|
7261
|
+
/**
|
7262
|
+
* @returns a texture move mode tween
|
7263
|
+
*/
|
7264
|
+
TextureMove: (textureMove: TextureMove) => PBTween['mode'];
|
7230
7265
|
}
|
7231
7266
|
|
7232
7267
|
/**
|
package/dist/tsdoc-metadata.json
CHANGED
@@ -1,7 +1,7 @@
|
|
1
1
|
{
|
2
2
|
"metadata": {
|
3
3
|
"toolPackage": "@microsoft/api-extractor",
|
4
|
-
"toolVersion": "7.
|
4
|
+
"toolVersion": "7.49.1",
|
5
5
|
"schemaVersion": 1011,
|
6
6
|
"oldestForwardsCompatibleVersion": 1001,
|
7
7
|
"tsdocConfig": {
|
@@ -41936,7 +41936,7 @@
|
|
41936
41936
|
{
|
41937
41937
|
"kind": "PropertySignature",
|
41938
41938
|
"canonicalReference": "@dcl/playground-assets!PBMaterial_PbrMaterial#bumpTexture:member",
|
41939
|
-
"docComment": "/**\n * default = null
|
41939
|
+
"docComment": "/**\n * default = null. Note that tilling and offset properties are ignored for this texture.\n */\n",
|
41940
41940
|
"excerptTokens": [
|
41941
41941
|
{
|
41942
41942
|
"kind": "Content",
|
@@ -42081,7 +42081,7 @@
|
|
42081
42081
|
{
|
42082
42082
|
"kind": "PropertySignature",
|
42083
42083
|
"canonicalReference": "@dcl/playground-assets!PBMaterial_PbrMaterial#emissiveTexture:member",
|
42084
|
-
"docComment": "/**\n * default = null
|
42084
|
+
"docComment": "/**\n * default = null. Note that tilling and offset properties are ignored for this texture.\n */\n",
|
42085
42085
|
"excerptTokens": [
|
42086
42086
|
{
|
42087
42087
|
"kind": "Content",
|
@@ -42486,7 +42486,7 @@
|
|
42486
42486
|
{
|
42487
42487
|
"kind": "PropertySignature",
|
42488
42488
|
"canonicalReference": "@dcl/playground-assets!PBMaterial_UnlitMaterial#alphaTexture:member",
|
42489
|
-
"docComment": "/**\n * default = null
|
42489
|
+
"docComment": "/**\n * default = null. Note that tilling and offset properties are ignored for this texture.\n */\n",
|
42490
42490
|
"excerptTokens": [
|
42491
42491
|
{
|
42492
42492
|
"kind": "Content",
|
@@ -49220,6 +49220,15 @@
|
|
49220
49220
|
"text": "Scale",
|
49221
49221
|
"canonicalReference": "@dcl/playground-assets!Scale:interface"
|
49222
49222
|
},
|
49223
|
+
{
|
49224
|
+
"kind": "Content",
|
49225
|
+
"text": ";\n } | {\n $case: \"textureMove\";\n textureMove: "
|
49226
|
+
},
|
49227
|
+
{
|
49228
|
+
"kind": "Reference",
|
49229
|
+
"text": "TextureMove",
|
49230
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove:interface"
|
49231
|
+
},
|
49223
49232
|
{
|
49224
49233
|
"kind": "Content",
|
49225
49234
|
"text": ";\n } | undefined"
|
@@ -49235,7 +49244,7 @@
|
|
49235
49244
|
"name": "mode",
|
49236
49245
|
"propertyTypeTokenRange": {
|
49237
49246
|
"startIndex": 1,
|
49238
|
-
"endIndex":
|
49247
|
+
"endIndex": 10
|
49239
49248
|
}
|
49240
49249
|
},
|
49241
49250
|
{
|
@@ -67037,7 +67046,7 @@
|
|
67037
67046
|
{
|
67038
67047
|
"kind": "PropertySignature",
|
67039
67048
|
"canonicalReference": "@dcl/playground-assets!Texture#offset:member",
|
67040
|
-
"docComment": "/**\n * Final uv = offset + (input_uv * tiling)
|
67049
|
+
"docComment": "/**\n * Final uv = offset + (input_uv * tiling)\n */\n",
|
67041
67050
|
"excerptTokens": [
|
67042
67051
|
{
|
67043
67052
|
"kind": "Content",
|
@@ -67096,7 +67105,7 @@
|
|
67096
67105
|
{
|
67097
67106
|
"kind": "PropertySignature",
|
67098
67107
|
"canonicalReference": "@dcl/playground-assets!Texture#tiling:member",
|
67099
|
-
"docComment": "/**\n * Tiling multiplier for texture repetition.\n */\n",
|
67108
|
+
"docComment": "/**\n * default = Vector2.One; Tiling multiplier for texture repetition, only works for the texture property in PbrMaterial or UnlitMaterial.\n */\n",
|
67100
67109
|
"excerptTokens": [
|
67101
67110
|
{
|
67102
67111
|
"kind": "Content",
|
@@ -67584,6 +67593,330 @@
|
|
67584
67593
|
"endIndex": 2
|
67585
67594
|
}
|
67586
67595
|
},
|
67596
|
+
{
|
67597
|
+
"kind": "Interface",
|
67598
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove:interface",
|
67599
|
+
"docComment": "/**\n * @public\n */\n",
|
67600
|
+
"excerptTokens": [
|
67601
|
+
{
|
67602
|
+
"kind": "Content",
|
67603
|
+
"text": "export interface TextureMove "
|
67604
|
+
}
|
67605
|
+
],
|
67606
|
+
"fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/tween.gen.d.ts",
|
67607
|
+
"releaseTag": "Public",
|
67608
|
+
"name": "TextureMove",
|
67609
|
+
"preserveMemberOrder": false,
|
67610
|
+
"members": [
|
67611
|
+
{
|
67612
|
+
"kind": "PropertySignature",
|
67613
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove#end:member",
|
67614
|
+
"docComment": "",
|
67615
|
+
"excerptTokens": [
|
67616
|
+
{
|
67617
|
+
"kind": "Content",
|
67618
|
+
"text": "end: "
|
67619
|
+
},
|
67620
|
+
{
|
67621
|
+
"kind": "Reference",
|
67622
|
+
"text": "Vector2",
|
67623
|
+
"canonicalReference": "@dcl/playground-assets!Vector2"
|
67624
|
+
},
|
67625
|
+
{
|
67626
|
+
"kind": "Content",
|
67627
|
+
"text": " | undefined"
|
67628
|
+
},
|
67629
|
+
{
|
67630
|
+
"kind": "Content",
|
67631
|
+
"text": ";"
|
67632
|
+
}
|
67633
|
+
],
|
67634
|
+
"isReadonly": false,
|
67635
|
+
"isOptional": false,
|
67636
|
+
"releaseTag": "Public",
|
67637
|
+
"name": "end",
|
67638
|
+
"propertyTypeTokenRange": {
|
67639
|
+
"startIndex": 1,
|
67640
|
+
"endIndex": 3
|
67641
|
+
}
|
67642
|
+
},
|
67643
|
+
{
|
67644
|
+
"kind": "PropertySignature",
|
67645
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove#movementType:member",
|
67646
|
+
"docComment": "/**\n * default = TextureMovementType.TMT_OFFSET\n */\n",
|
67647
|
+
"excerptTokens": [
|
67648
|
+
{
|
67649
|
+
"kind": "Content",
|
67650
|
+
"text": "movementType?: "
|
67651
|
+
},
|
67652
|
+
{
|
67653
|
+
"kind": "Reference",
|
67654
|
+
"text": "TextureMovementType",
|
67655
|
+
"canonicalReference": "@dcl/playground-assets!TextureMovementType:enum"
|
67656
|
+
},
|
67657
|
+
{
|
67658
|
+
"kind": "Content",
|
67659
|
+
"text": " | undefined"
|
67660
|
+
},
|
67661
|
+
{
|
67662
|
+
"kind": "Content",
|
67663
|
+
"text": ";"
|
67664
|
+
}
|
67665
|
+
],
|
67666
|
+
"isReadonly": false,
|
67667
|
+
"isOptional": true,
|
67668
|
+
"releaseTag": "Public",
|
67669
|
+
"name": "movementType",
|
67670
|
+
"propertyTypeTokenRange": {
|
67671
|
+
"startIndex": 1,
|
67672
|
+
"endIndex": 3
|
67673
|
+
}
|
67674
|
+
},
|
67675
|
+
{
|
67676
|
+
"kind": "PropertySignature",
|
67677
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove#start:member",
|
67678
|
+
"docComment": "",
|
67679
|
+
"excerptTokens": [
|
67680
|
+
{
|
67681
|
+
"kind": "Content",
|
67682
|
+
"text": "start: "
|
67683
|
+
},
|
67684
|
+
{
|
67685
|
+
"kind": "Reference",
|
67686
|
+
"text": "Vector2",
|
67687
|
+
"canonicalReference": "@dcl/playground-assets!Vector2"
|
67688
|
+
},
|
67689
|
+
{
|
67690
|
+
"kind": "Content",
|
67691
|
+
"text": " | undefined"
|
67692
|
+
},
|
67693
|
+
{
|
67694
|
+
"kind": "Content",
|
67695
|
+
"text": ";"
|
67696
|
+
}
|
67697
|
+
],
|
67698
|
+
"isReadonly": false,
|
67699
|
+
"isOptional": false,
|
67700
|
+
"releaseTag": "Public",
|
67701
|
+
"name": "start",
|
67702
|
+
"propertyTypeTokenRange": {
|
67703
|
+
"startIndex": 1,
|
67704
|
+
"endIndex": 3
|
67705
|
+
}
|
67706
|
+
}
|
67707
|
+
],
|
67708
|
+
"extendsTokenRanges": []
|
67709
|
+
},
|
67710
|
+
{
|
67711
|
+
"kind": "Namespace",
|
67712
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove:namespace",
|
67713
|
+
"docComment": "/**\n * @public\n */\n",
|
67714
|
+
"excerptTokens": [
|
67715
|
+
{
|
67716
|
+
"kind": "Content",
|
67717
|
+
"text": "export declare namespace TextureMove "
|
67718
|
+
}
|
67719
|
+
],
|
67720
|
+
"fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/tween.gen.d.ts",
|
67721
|
+
"releaseTag": "Public",
|
67722
|
+
"name": "TextureMove",
|
67723
|
+
"preserveMemberOrder": false,
|
67724
|
+
"members": [
|
67725
|
+
{
|
67726
|
+
"kind": "Function",
|
67727
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove.decode:function(1)",
|
67728
|
+
"docComment": "",
|
67729
|
+
"excerptTokens": [
|
67730
|
+
{
|
67731
|
+
"kind": "Content",
|
67732
|
+
"text": "function decode(input: "
|
67733
|
+
},
|
67734
|
+
{
|
67735
|
+
"kind": "Reference",
|
67736
|
+
"text": "_m0.Reader",
|
67737
|
+
"canonicalReference": "protobufjs!Reader:class"
|
67738
|
+
},
|
67739
|
+
{
|
67740
|
+
"kind": "Content",
|
67741
|
+
"text": " | "
|
67742
|
+
},
|
67743
|
+
{
|
67744
|
+
"kind": "Reference",
|
67745
|
+
"text": "Uint8Array",
|
67746
|
+
"canonicalReference": "!Uint8Array:interface"
|
67747
|
+
},
|
67748
|
+
{
|
67749
|
+
"kind": "Content",
|
67750
|
+
"text": ", length?: "
|
67751
|
+
},
|
67752
|
+
{
|
67753
|
+
"kind": "Content",
|
67754
|
+
"text": "number"
|
67755
|
+
},
|
67756
|
+
{
|
67757
|
+
"kind": "Content",
|
67758
|
+
"text": "): "
|
67759
|
+
},
|
67760
|
+
{
|
67761
|
+
"kind": "Reference",
|
67762
|
+
"text": "TextureMove",
|
67763
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove:interface"
|
67764
|
+
},
|
67765
|
+
{
|
67766
|
+
"kind": "Content",
|
67767
|
+
"text": ";"
|
67768
|
+
}
|
67769
|
+
],
|
67770
|
+
"returnTypeTokenRange": {
|
67771
|
+
"startIndex": 7,
|
67772
|
+
"endIndex": 8
|
67773
|
+
},
|
67774
|
+
"releaseTag": "Public",
|
67775
|
+
"overloadIndex": 1,
|
67776
|
+
"parameters": [
|
67777
|
+
{
|
67778
|
+
"parameterName": "input",
|
67779
|
+
"parameterTypeTokenRange": {
|
67780
|
+
"startIndex": 1,
|
67781
|
+
"endIndex": 4
|
67782
|
+
},
|
67783
|
+
"isOptional": false
|
67784
|
+
},
|
67785
|
+
{
|
67786
|
+
"parameterName": "length",
|
67787
|
+
"parameterTypeTokenRange": {
|
67788
|
+
"startIndex": 5,
|
67789
|
+
"endIndex": 6
|
67790
|
+
},
|
67791
|
+
"isOptional": true
|
67792
|
+
}
|
67793
|
+
],
|
67794
|
+
"name": "decode"
|
67795
|
+
},
|
67796
|
+
{
|
67797
|
+
"kind": "Function",
|
67798
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove.encode:function(1)",
|
67799
|
+
"docComment": "",
|
67800
|
+
"excerptTokens": [
|
67801
|
+
{
|
67802
|
+
"kind": "Content",
|
67803
|
+
"text": "function encode(message: "
|
67804
|
+
},
|
67805
|
+
{
|
67806
|
+
"kind": "Reference",
|
67807
|
+
"text": "TextureMove",
|
67808
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove:interface"
|
67809
|
+
},
|
67810
|
+
{
|
67811
|
+
"kind": "Content",
|
67812
|
+
"text": ", writer?: "
|
67813
|
+
},
|
67814
|
+
{
|
67815
|
+
"kind": "Reference",
|
67816
|
+
"text": "_m0.Writer",
|
67817
|
+
"canonicalReference": "protobufjs!Writer:class"
|
67818
|
+
},
|
67819
|
+
{
|
67820
|
+
"kind": "Content",
|
67821
|
+
"text": "): "
|
67822
|
+
},
|
67823
|
+
{
|
67824
|
+
"kind": "Reference",
|
67825
|
+
"text": "_m0.Writer",
|
67826
|
+
"canonicalReference": "protobufjs!Writer:class"
|
67827
|
+
},
|
67828
|
+
{
|
67829
|
+
"kind": "Content",
|
67830
|
+
"text": ";"
|
67831
|
+
}
|
67832
|
+
],
|
67833
|
+
"returnTypeTokenRange": {
|
67834
|
+
"startIndex": 5,
|
67835
|
+
"endIndex": 6
|
67836
|
+
},
|
67837
|
+
"releaseTag": "Public",
|
67838
|
+
"overloadIndex": 1,
|
67839
|
+
"parameters": [
|
67840
|
+
{
|
67841
|
+
"parameterName": "message",
|
67842
|
+
"parameterTypeTokenRange": {
|
67843
|
+
"startIndex": 1,
|
67844
|
+
"endIndex": 2
|
67845
|
+
},
|
67846
|
+
"isOptional": false
|
67847
|
+
},
|
67848
|
+
{
|
67849
|
+
"parameterName": "writer",
|
67850
|
+
"parameterTypeTokenRange": {
|
67851
|
+
"startIndex": 3,
|
67852
|
+
"endIndex": 4
|
67853
|
+
},
|
67854
|
+
"isOptional": true
|
67855
|
+
}
|
67856
|
+
],
|
67857
|
+
"name": "encode"
|
67858
|
+
}
|
67859
|
+
]
|
67860
|
+
},
|
67861
|
+
{
|
67862
|
+
"kind": "Enum",
|
67863
|
+
"canonicalReference": "@dcl/playground-assets!TextureMovementType:enum",
|
67864
|
+
"docComment": "/**\n * @public\n */\n",
|
67865
|
+
"excerptTokens": [
|
67866
|
+
{
|
67867
|
+
"kind": "Content",
|
67868
|
+
"text": "export declare const enum TextureMovementType "
|
67869
|
+
}
|
67870
|
+
],
|
67871
|
+
"fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/tween.gen.d.ts",
|
67872
|
+
"releaseTag": "Public",
|
67873
|
+
"name": "TextureMovementType",
|
67874
|
+
"preserveMemberOrder": false,
|
67875
|
+
"members": [
|
67876
|
+
{
|
67877
|
+
"kind": "EnumMember",
|
67878
|
+
"canonicalReference": "@dcl/playground-assets!TextureMovementType.TMT_OFFSET:member",
|
67879
|
+
"docComment": "/**\n * TMT_OFFSET - default = TextureMovementType.TMT_OFFSET\n */\n",
|
67880
|
+
"excerptTokens": [
|
67881
|
+
{
|
67882
|
+
"kind": "Content",
|
67883
|
+
"text": "TMT_OFFSET = "
|
67884
|
+
},
|
67885
|
+
{
|
67886
|
+
"kind": "Content",
|
67887
|
+
"text": "0"
|
67888
|
+
}
|
67889
|
+
],
|
67890
|
+
"initializerTokenRange": {
|
67891
|
+
"startIndex": 1,
|
67892
|
+
"endIndex": 2
|
67893
|
+
},
|
67894
|
+
"releaseTag": "Public",
|
67895
|
+
"name": "TMT_OFFSET"
|
67896
|
+
},
|
67897
|
+
{
|
67898
|
+
"kind": "EnumMember",
|
67899
|
+
"canonicalReference": "@dcl/playground-assets!TextureMovementType.TMT_TILING:member",
|
67900
|
+
"docComment": "",
|
67901
|
+
"excerptTokens": [
|
67902
|
+
{
|
67903
|
+
"kind": "Content",
|
67904
|
+
"text": "TMT_TILING = "
|
67905
|
+
},
|
67906
|
+
{
|
67907
|
+
"kind": "Content",
|
67908
|
+
"text": "1"
|
67909
|
+
}
|
67910
|
+
],
|
67911
|
+
"initializerTokenRange": {
|
67912
|
+
"startIndex": 1,
|
67913
|
+
"endIndex": 2
|
67914
|
+
},
|
67915
|
+
"releaseTag": "Public",
|
67916
|
+
"name": "TMT_TILING"
|
67917
|
+
}
|
67918
|
+
]
|
67919
|
+
},
|
67587
67920
|
{
|
67588
67921
|
"kind": "Interface",
|
67589
67922
|
"canonicalReference": "@dcl/playground-assets!TextureUnion:interface",
|
@@ -68731,6 +69064,51 @@
|
|
68731
69064
|
"startIndex": 1,
|
68732
69065
|
"endIndex": 6
|
68733
69066
|
}
|
69067
|
+
},
|
69068
|
+
{
|
69069
|
+
"kind": "PropertySignature",
|
69070
|
+
"canonicalReference": "@dcl/playground-assets!TweenHelper#TextureMove:member",
|
69071
|
+
"docComment": "/**\n * @returns a texture move mode tween\n */\n",
|
69072
|
+
"excerptTokens": [
|
69073
|
+
{
|
69074
|
+
"kind": "Content",
|
69075
|
+
"text": "TextureMove: "
|
69076
|
+
},
|
69077
|
+
{
|
69078
|
+
"kind": "Content",
|
69079
|
+
"text": "(textureMove: "
|
69080
|
+
},
|
69081
|
+
{
|
69082
|
+
"kind": "Reference",
|
69083
|
+
"text": "TextureMove",
|
69084
|
+
"canonicalReference": "@dcl/playground-assets!TextureMove"
|
69085
|
+
},
|
69086
|
+
{
|
69087
|
+
"kind": "Content",
|
69088
|
+
"text": ") => "
|
69089
|
+
},
|
69090
|
+
{
|
69091
|
+
"kind": "Reference",
|
69092
|
+
"text": "PBTween",
|
69093
|
+
"canonicalReference": "@dcl/playground-assets!PBTween"
|
69094
|
+
},
|
69095
|
+
{
|
69096
|
+
"kind": "Content",
|
69097
|
+
"text": "['mode']"
|
69098
|
+
},
|
69099
|
+
{
|
69100
|
+
"kind": "Content",
|
69101
|
+
"text": ";"
|
69102
|
+
}
|
69103
|
+
],
|
69104
|
+
"isReadonly": false,
|
69105
|
+
"isOptional": false,
|
69106
|
+
"releaseTag": "Public",
|
69107
|
+
"name": "TextureMove",
|
69108
|
+
"propertyTypeTokenRange": {
|
69109
|
+
"startIndex": 1,
|
69110
|
+
"endIndex": 6
|
69111
|
+
}
|
68734
69112
|
}
|
68735
69113
|
],
|
68736
69114
|
"extendsTokenRanges": []
|
@@ -2906,6 +2906,9 @@ export interface PBTween {
|
|
2906
2906
|
} | {
|
2907
2907
|
$case: "scale";
|
2908
2908
|
scale: Scale;
|
2909
|
+
} | {
|
2910
|
+
$case: "textureMove";
|
2911
|
+
textureMove: TextureMove;
|
2909
2912
|
} | undefined;
|
2910
2913
|
playing?: boolean | undefined;
|
2911
2914
|
}
|
@@ -3959,6 +3962,30 @@ export interface TextureHelper {
|
|
3959
3962
|
// @public
|
3960
3963
|
export type TextureMode = 'nine-slices' | 'center' | 'stretch';
|
3961
3964
|
|
3965
|
+
// @public (undocumented)
|
3966
|
+
export interface TextureMove {
|
3967
|
+
// (undocumented)
|
3968
|
+
end: PBVector2 | undefined;
|
3969
|
+
movementType?: TextureMovementType | undefined;
|
3970
|
+
// (undocumented)
|
3971
|
+
start: PBVector2 | undefined;
|
3972
|
+
}
|
3973
|
+
|
3974
|
+
// @public (undocumented)
|
3975
|
+
export namespace TextureMove {
|
3976
|
+
// (undocumented)
|
3977
|
+
export function decode(input: _m0.Reader | Uint8Array, length?: number): TextureMove;
|
3978
|
+
// (undocumented)
|
3979
|
+
export function encode(message: TextureMove, writer?: _m0.Writer): _m0.Writer;
|
3980
|
+
}
|
3981
|
+
|
3982
|
+
// @public (undocumented)
|
3983
|
+
export const enum TextureMovementType {
|
3984
|
+
TMT_OFFSET = 0,
|
3985
|
+
// (undocumented)
|
3986
|
+
TMT_TILING = 1
|
3987
|
+
}
|
3988
|
+
|
3962
3989
|
// @public (undocumented)
|
3963
3990
|
export interface TextureUnion {
|
3964
3991
|
// (undocumented)
|
@@ -4081,6 +4108,8 @@ export interface TweenHelper {
|
|
4081
4108
|
Rotate: (rotate: Rotate) => PBTween['mode'];
|
4082
4109
|
// (undocumented)
|
4083
4110
|
Scale: (scale: Scale) => PBTween['mode'];
|
4111
|
+
// (undocumented)
|
4112
|
+
TextureMove: (textureMove: TextureMove) => PBTween['mode'];
|
4084
4113
|
}
|
4085
4114
|
|
4086
4115
|
// @public (undocumented)
|
package/package.json
CHANGED
@@ -1,11 +1,11 @@
|
|
1
1
|
{
|
2
2
|
"name": "@dcl/playground-assets",
|
3
3
|
"description": "",
|
4
|
-
"version": "7.7.
|
4
|
+
"version": "7.7.1-12789404522.commit-01f4702",
|
5
5
|
"author": "Decentraland",
|
6
6
|
"dependencies": {
|
7
|
-
"@dcl/js-runtime": "7.7.
|
8
|
-
"@dcl/sdk": "7.7.
|
7
|
+
"@dcl/js-runtime": "7.7.1-12789404522.commit-01f4702",
|
8
|
+
"@dcl/sdk": "7.7.1-12789404522.commit-01f4702"
|
9
9
|
},
|
10
10
|
"devDependencies": {
|
11
11
|
"@microsoft/api-extractor": "^7.33.8"
|
@@ -32,5 +32,5 @@
|
|
32
32
|
},
|
33
33
|
"types": "./dist/index.d.ts",
|
34
34
|
"typings": "./dist/index.d.ts",
|
35
|
-
"commit": "
|
35
|
+
"commit": "01f47021cb864d6d8e8abd32f2d5bf8dc9856e91"
|
36
36
|
}
|