@dcl/playground-assets 7.18.2-21450088960.commit-3c16004 → 7.18.2-21453292414.commit-1da934f
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 +361 -0
- package/dist/beta.d.ts +361 -0
- package/dist/index.bundled.d.ts +361 -0
- package/dist/index.js +7 -7
- package/dist/index.js.map +4 -4
- package/dist/playground/sdk/dcl-sdk.package.json +2 -2
- package/dist/playground-assets.d.ts +361 -0
- package/etc/playground-assets.api.json +2306 -490
- package/etc/playground-assets.api.md +96 -0
- package/package.json +4 -4
|
@@ -16353,6 +16353,53 @@
|
|
|
16353
16353
|
],
|
|
16354
16354
|
"name": "createReactBasedUiSystem"
|
|
16355
16355
|
},
|
|
16356
|
+
{
|
|
16357
|
+
"kind": "Function",
|
|
16358
|
+
"canonicalReference": "@dcl/playground-assets!createTimers:function(1)",
|
|
16359
|
+
"docComment": "/**\n * Creates a timer system bound to a specific engine instance.\n *\n * @param targetEngine - The engine instance to bind timers to\n *\n * @returns A Timers object with setTimeout, clearTimeout, setInterval, and clearInterval methods\n *\n * @example\n * ```ts\n * import { Engine } from '@dcl/sdk/ecs'\n * import { createTimers } from '@dcl/sdk/ecs'\n *\n * const engine = Engine()\n * const timers = createTimers(engine)\n *\n * timers.setTimeout(() => console.log('done'), 1000)\n * ```\n *\n * @public\n */\n",
|
|
16360
|
+
"excerptTokens": [
|
|
16361
|
+
{
|
|
16362
|
+
"kind": "Content",
|
|
16363
|
+
"text": "export declare function createTimers(targetEngine: "
|
|
16364
|
+
},
|
|
16365
|
+
{
|
|
16366
|
+
"kind": "Reference",
|
|
16367
|
+
"text": "IEngine",
|
|
16368
|
+
"canonicalReference": "@dcl/playground-assets!IEngine:interface"
|
|
16369
|
+
},
|
|
16370
|
+
{
|
|
16371
|
+
"kind": "Content",
|
|
16372
|
+
"text": "): "
|
|
16373
|
+
},
|
|
16374
|
+
{
|
|
16375
|
+
"kind": "Reference",
|
|
16376
|
+
"text": "Timers",
|
|
16377
|
+
"canonicalReference": "@dcl/playground-assets!Timers:type"
|
|
16378
|
+
},
|
|
16379
|
+
{
|
|
16380
|
+
"kind": "Content",
|
|
16381
|
+
"text": ";"
|
|
16382
|
+
}
|
|
16383
|
+
],
|
|
16384
|
+
"fileUrlPath": "../ecs/dist/runtime/helpers/timers.d.ts",
|
|
16385
|
+
"returnTypeTokenRange": {
|
|
16386
|
+
"startIndex": 3,
|
|
16387
|
+
"endIndex": 4
|
|
16388
|
+
},
|
|
16389
|
+
"releaseTag": "Public",
|
|
16390
|
+
"overloadIndex": 1,
|
|
16391
|
+
"parameters": [
|
|
16392
|
+
{
|
|
16393
|
+
"parameterName": "targetEngine",
|
|
16394
|
+
"parameterTypeTokenRange": {
|
|
16395
|
+
"startIndex": 1,
|
|
16396
|
+
"endIndex": 2
|
|
16397
|
+
},
|
|
16398
|
+
"isOptional": false
|
|
16399
|
+
}
|
|
16400
|
+
],
|
|
16401
|
+
"name": "createTimers"
|
|
16402
|
+
},
|
|
16356
16403
|
{
|
|
16357
16404
|
"kind": "Function",
|
|
16358
16405
|
"canonicalReference": "@dcl/playground-assets!createTweenSystem:function(1)",
|
|
@@ -19452,239 +19499,835 @@
|
|
|
19452
19499
|
"name": "executeTask"
|
|
19453
19500
|
},
|
|
19454
19501
|
{
|
|
19455
|
-
"kind": "
|
|
19456
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
19457
|
-
"docComment": "/**\n * @public\n */\n",
|
|
19458
|
-
"excerptTokens": [
|
|
19459
|
-
{
|
|
19460
|
-
"kind": "Content",
|
|
19461
|
-
"text": "export type FlexDirectionType = "
|
|
19462
|
-
},
|
|
19463
|
-
{
|
|
19464
|
-
"kind": "Content",
|
|
19465
|
-
"text": "'row' | 'column' | 'column-reverse' | 'row-reverse'"
|
|
19466
|
-
},
|
|
19467
|
-
{
|
|
19468
|
-
"kind": "Content",
|
|
19469
|
-
"text": ";"
|
|
19470
|
-
}
|
|
19471
|
-
],
|
|
19472
|
-
"fileUrlPath": "../react-ecs/dist/components/uiTransform/types.d.ts",
|
|
19473
|
-
"releaseTag": "Public",
|
|
19474
|
-
"name": "FlexDirectionType",
|
|
19475
|
-
"typeTokenRange": {
|
|
19476
|
-
"startIndex": 1,
|
|
19477
|
-
"endIndex": 2
|
|
19478
|
-
}
|
|
19479
|
-
},
|
|
19480
|
-
{
|
|
19481
|
-
"kind": "TypeAlias",
|
|
19482
|
-
"canonicalReference": "@dcl/playground-assets!FlexWrapType:type",
|
|
19483
|
-
"docComment": "/**\n * @public\n */\n",
|
|
19484
|
-
"excerptTokens": [
|
|
19485
|
-
{
|
|
19486
|
-
"kind": "Content",
|
|
19487
|
-
"text": "export type FlexWrapType = "
|
|
19488
|
-
},
|
|
19489
|
-
{
|
|
19490
|
-
"kind": "Content",
|
|
19491
|
-
"text": "'wrap' | 'nowrap' | 'wrap-reverse'"
|
|
19492
|
-
},
|
|
19493
|
-
{
|
|
19494
|
-
"kind": "Content",
|
|
19495
|
-
"text": ";"
|
|
19496
|
-
}
|
|
19497
|
-
],
|
|
19498
|
-
"fileUrlPath": "../react-ecs/dist/components/uiTransform/types.d.ts",
|
|
19499
|
-
"releaseTag": "Public",
|
|
19500
|
-
"name": "FlexWrapType",
|
|
19501
|
-
"typeTokenRange": {
|
|
19502
|
-
"startIndex": 1,
|
|
19503
|
-
"endIndex": 2
|
|
19504
|
-
}
|
|
19505
|
-
},
|
|
19506
|
-
{
|
|
19507
|
-
"kind": "TypeAlias",
|
|
19508
|
-
"canonicalReference": "@dcl/playground-assets!FloatArray:type",
|
|
19509
|
-
"docComment": "/**\n * @public\n */\n",
|
|
19510
|
-
"excerptTokens": [
|
|
19511
|
-
{
|
|
19512
|
-
"kind": "Content",
|
|
19513
|
-
"text": "export declare type FloatArray = "
|
|
19514
|
-
},
|
|
19515
|
-
{
|
|
19516
|
-
"kind": "Content",
|
|
19517
|
-
"text": "number[]"
|
|
19518
|
-
},
|
|
19519
|
-
{
|
|
19520
|
-
"kind": "Content",
|
|
19521
|
-
"text": ";"
|
|
19522
|
-
}
|
|
19523
|
-
],
|
|
19524
|
-
"fileUrlPath": "../sdk/node_modules/@dcl/ecs-math/dist/types.d.ts",
|
|
19525
|
-
"releaseTag": "Public",
|
|
19526
|
-
"name": "FloatArray",
|
|
19527
|
-
"typeTokenRange": {
|
|
19528
|
-
"startIndex": 1,
|
|
19529
|
-
"endIndex": 2
|
|
19530
|
-
}
|
|
19531
|
-
},
|
|
19532
|
-
{
|
|
19533
|
-
"kind": "Enum",
|
|
19534
|
-
"canonicalReference": "@dcl/playground-assets!Font:enum",
|
|
19535
|
-
"docComment": "/**\n * @public\n */\n",
|
|
19502
|
+
"kind": "Interface",
|
|
19503
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial:interface",
|
|
19504
|
+
"docComment": "/**\n * Flattened material interface for simplified property access\n *\n * @public\n */\n",
|
|
19536
19505
|
"excerptTokens": [
|
|
19537
19506
|
{
|
|
19538
19507
|
"kind": "Content",
|
|
19539
|
-
"text": "export
|
|
19508
|
+
"text": "export interface FlatMaterial "
|
|
19540
19509
|
}
|
|
19541
19510
|
],
|
|
19542
|
-
"fileUrlPath": "../ecs/dist/components/
|
|
19511
|
+
"fileUrlPath": "../ecs/dist/components/extended/Material.d.ts",
|
|
19543
19512
|
"releaseTag": "Public",
|
|
19544
|
-
"name": "
|
|
19513
|
+
"name": "FlatMaterial",
|
|
19545
19514
|
"preserveMemberOrder": false,
|
|
19546
19515
|
"members": [
|
|
19547
19516
|
{
|
|
19548
|
-
"kind": "
|
|
19549
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
19550
|
-
"docComment": "",
|
|
19517
|
+
"kind": "PropertySignature",
|
|
19518
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#albedoColor:member",
|
|
19519
|
+
"docComment": "/**\n * Albedo/base color (PBR only). Default: white\n */\n",
|
|
19551
19520
|
"excerptTokens": [
|
|
19552
19521
|
{
|
|
19553
19522
|
"kind": "Content",
|
|
19554
|
-
"text": "
|
|
19523
|
+
"text": "albedoColor: "
|
|
19524
|
+
},
|
|
19525
|
+
{
|
|
19526
|
+
"kind": "Reference",
|
|
19527
|
+
"text": "Color4",
|
|
19528
|
+
"canonicalReference": "@dcl/playground-assets!Color4"
|
|
19555
19529
|
},
|
|
19556
19530
|
{
|
|
19557
19531
|
"kind": "Content",
|
|
19558
|
-
"text": "
|
|
19532
|
+
"text": " | undefined"
|
|
19533
|
+
},
|
|
19534
|
+
{
|
|
19535
|
+
"kind": "Content",
|
|
19536
|
+
"text": ";"
|
|
19559
19537
|
}
|
|
19560
19538
|
],
|
|
19561
|
-
"
|
|
19562
|
-
|
|
19563
|
-
"endIndex": 2
|
|
19564
|
-
},
|
|
19539
|
+
"isReadonly": false,
|
|
19540
|
+
"isOptional": false,
|
|
19565
19541
|
"releaseTag": "Public",
|
|
19566
|
-
"name": "
|
|
19542
|
+
"name": "albedoColor",
|
|
19543
|
+
"propertyTypeTokenRange": {
|
|
19544
|
+
"startIndex": 1,
|
|
19545
|
+
"endIndex": 3
|
|
19546
|
+
}
|
|
19567
19547
|
},
|
|
19568
19548
|
{
|
|
19569
|
-
"kind": "
|
|
19570
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
19571
|
-
"docComment": "",
|
|
19549
|
+
"kind": "PropertySignature",
|
|
19550
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#alphaTest:member",
|
|
19551
|
+
"docComment": "/**\n * Alpha test threshold (0-1). Default: 0.5\n */\n",
|
|
19572
19552
|
"excerptTokens": [
|
|
19573
19553
|
{
|
|
19574
19554
|
"kind": "Content",
|
|
19575
|
-
"text": "
|
|
19555
|
+
"text": "alphaTest: "
|
|
19576
19556
|
},
|
|
19577
19557
|
{
|
|
19578
19558
|
"kind": "Content",
|
|
19579
|
-
"text": "
|
|
19559
|
+
"text": "number | undefined"
|
|
19560
|
+
},
|
|
19561
|
+
{
|
|
19562
|
+
"kind": "Content",
|
|
19563
|
+
"text": ";"
|
|
19580
19564
|
}
|
|
19581
19565
|
],
|
|
19582
|
-
"
|
|
19566
|
+
"isReadonly": false,
|
|
19567
|
+
"isOptional": false,
|
|
19568
|
+
"releaseTag": "Public",
|
|
19569
|
+
"name": "alphaTest",
|
|
19570
|
+
"propertyTypeTokenRange": {
|
|
19583
19571
|
"startIndex": 1,
|
|
19584
19572
|
"endIndex": 2
|
|
19585
|
-
}
|
|
19586
|
-
"releaseTag": "Public",
|
|
19587
|
-
"name": "F_SANS_SERIF"
|
|
19573
|
+
}
|
|
19588
19574
|
},
|
|
19589
19575
|
{
|
|
19590
|
-
"kind": "
|
|
19591
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
19592
|
-
"docComment": "",
|
|
19576
|
+
"kind": "PropertySignature",
|
|
19577
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#alphaTexture:member",
|
|
19578
|
+
"docComment": "/**\n * Access to the alpha texture properties (works for both PBR and Unlit materials)\n */\n",
|
|
19593
19579
|
"excerptTokens": [
|
|
19594
19580
|
{
|
|
19595
19581
|
"kind": "Content",
|
|
19596
|
-
"text": "
|
|
19582
|
+
"text": "readonly alphaTexture: "
|
|
19583
|
+
},
|
|
19584
|
+
{
|
|
19585
|
+
"kind": "Reference",
|
|
19586
|
+
"text": "FlatTexture",
|
|
19587
|
+
"canonicalReference": "@dcl/playground-assets!FlatTexture:interface"
|
|
19597
19588
|
},
|
|
19598
19589
|
{
|
|
19599
19590
|
"kind": "Content",
|
|
19600
|
-
"text": "
|
|
19591
|
+
"text": ";"
|
|
19601
19592
|
}
|
|
19602
19593
|
],
|
|
19603
|
-
"
|
|
19594
|
+
"isReadonly": true,
|
|
19595
|
+
"isOptional": false,
|
|
19596
|
+
"releaseTag": "Public",
|
|
19597
|
+
"name": "alphaTexture",
|
|
19598
|
+
"propertyTypeTokenRange": {
|
|
19604
19599
|
"startIndex": 1,
|
|
19605
19600
|
"endIndex": 2
|
|
19606
|
-
}
|
|
19607
|
-
"releaseTag": "Public",
|
|
19608
|
-
"name": "F_SERIF"
|
|
19609
|
-
}
|
|
19610
|
-
]
|
|
19611
|
-
},
|
|
19612
|
-
{
|
|
19613
|
-
"kind": "Function",
|
|
19614
|
-
"canonicalReference": "@dcl/playground-assets!getComponentEntityTree:function(1)",
|
|
19615
|
-
"docComment": "/**\n * Get an iterator of entities that follow a tree structure for a component\n *\n * @param engine - the engine running the entities\n *\n * @param entity - the root entity of the tree\n *\n * @param component - the parenting component to filter by\n *\n * @returns An iterator of an array as [entity, entity2, ...]\n *\n * Example:\n * ```ts\n * const TreeComponent = engine.defineComponent('custom::TreeComponent', {\n * label: Schemas.String,\n * parent: Schemas.Entity\n * })\n *\n * for (const entity of getComponentEntityTree(engine, entity, TreeComponent)) {\n * // entity in the tree\n * }\n * ```\n *\n * @public\n */\n",
|
|
19616
|
-
"excerptTokens": [
|
|
19617
|
-
{
|
|
19618
|
-
"kind": "Content",
|
|
19619
|
-
"text": "export declare function getComponentEntityTree<T>(engine: "
|
|
19620
|
-
},
|
|
19621
|
-
{
|
|
19622
|
-
"kind": "Reference",
|
|
19623
|
-
"text": "Pick",
|
|
19624
|
-
"canonicalReference": "!Pick:type"
|
|
19625
|
-
},
|
|
19626
|
-
{
|
|
19627
|
-
"kind": "Content",
|
|
19628
|
-
"text": "<"
|
|
19629
|
-
},
|
|
19630
|
-
{
|
|
19631
|
-
"kind": "Reference",
|
|
19632
|
-
"text": "IEngine",
|
|
19633
|
-
"canonicalReference": "@dcl/playground-assets!IEngine:interface"
|
|
19601
|
+
}
|
|
19634
19602
|
},
|
|
19635
19603
|
{
|
|
19636
|
-
"kind": "
|
|
19637
|
-
"
|
|
19604
|
+
"kind": "PropertySignature",
|
|
19605
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#bumpTexture:member",
|
|
19606
|
+
"docComment": "/**\n * Access to the bump/normal texture properties (PBR only - returns undefined for Unlit materials)\n */\n",
|
|
19607
|
+
"excerptTokens": [
|
|
19608
|
+
{
|
|
19609
|
+
"kind": "Content",
|
|
19610
|
+
"text": "readonly bumpTexture: "
|
|
19611
|
+
},
|
|
19612
|
+
{
|
|
19613
|
+
"kind": "Reference",
|
|
19614
|
+
"text": "FlatTexture",
|
|
19615
|
+
"canonicalReference": "@dcl/playground-assets!FlatTexture:interface"
|
|
19616
|
+
},
|
|
19617
|
+
{
|
|
19618
|
+
"kind": "Content",
|
|
19619
|
+
"text": " | undefined"
|
|
19620
|
+
},
|
|
19621
|
+
{
|
|
19622
|
+
"kind": "Content",
|
|
19623
|
+
"text": ";"
|
|
19624
|
+
}
|
|
19625
|
+
],
|
|
19626
|
+
"isReadonly": true,
|
|
19627
|
+
"isOptional": false,
|
|
19628
|
+
"releaseTag": "Public",
|
|
19629
|
+
"name": "bumpTexture",
|
|
19630
|
+
"propertyTypeTokenRange": {
|
|
19631
|
+
"startIndex": 1,
|
|
19632
|
+
"endIndex": 3
|
|
19633
|
+
}
|
|
19638
19634
|
},
|
|
19639
19635
|
{
|
|
19640
|
-
"kind": "
|
|
19641
|
-
"
|
|
19636
|
+
"kind": "PropertySignature",
|
|
19637
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#castShadows:member",
|
|
19638
|
+
"docComment": "/**\n * Whether the material casts shadows. Default: true\n */\n",
|
|
19639
|
+
"excerptTokens": [
|
|
19640
|
+
{
|
|
19641
|
+
"kind": "Content",
|
|
19642
|
+
"text": "castShadows: "
|
|
19643
|
+
},
|
|
19644
|
+
{
|
|
19645
|
+
"kind": "Content",
|
|
19646
|
+
"text": "boolean | undefined"
|
|
19647
|
+
},
|
|
19648
|
+
{
|
|
19649
|
+
"kind": "Content",
|
|
19650
|
+
"text": ";"
|
|
19651
|
+
}
|
|
19652
|
+
],
|
|
19653
|
+
"isReadonly": false,
|
|
19654
|
+
"isOptional": false,
|
|
19655
|
+
"releaseTag": "Public",
|
|
19656
|
+
"name": "castShadows",
|
|
19657
|
+
"propertyTypeTokenRange": {
|
|
19658
|
+
"startIndex": 1,
|
|
19659
|
+
"endIndex": 2
|
|
19660
|
+
}
|
|
19642
19661
|
},
|
|
19643
19662
|
{
|
|
19644
|
-
"kind": "
|
|
19645
|
-
"
|
|
19646
|
-
"
|
|
19663
|
+
"kind": "PropertySignature",
|
|
19664
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#diffuseColor:member",
|
|
19665
|
+
"docComment": "/**\n * Diffuse color (Unlit only). Default: white\n */\n",
|
|
19666
|
+
"excerptTokens": [
|
|
19667
|
+
{
|
|
19668
|
+
"kind": "Content",
|
|
19669
|
+
"text": "diffuseColor: "
|
|
19670
|
+
},
|
|
19671
|
+
{
|
|
19672
|
+
"kind": "Reference",
|
|
19673
|
+
"text": "Color4",
|
|
19674
|
+
"canonicalReference": "@dcl/playground-assets!Color4"
|
|
19675
|
+
},
|
|
19676
|
+
{
|
|
19677
|
+
"kind": "Content",
|
|
19678
|
+
"text": " | undefined"
|
|
19679
|
+
},
|
|
19680
|
+
{
|
|
19681
|
+
"kind": "Content",
|
|
19682
|
+
"text": ";"
|
|
19683
|
+
}
|
|
19684
|
+
],
|
|
19685
|
+
"isReadonly": false,
|
|
19686
|
+
"isOptional": false,
|
|
19687
|
+
"releaseTag": "Public",
|
|
19688
|
+
"name": "diffuseColor",
|
|
19689
|
+
"propertyTypeTokenRange": {
|
|
19690
|
+
"startIndex": 1,
|
|
19691
|
+
"endIndex": 3
|
|
19692
|
+
}
|
|
19647
19693
|
},
|
|
19648
19694
|
{
|
|
19649
|
-
"kind": "
|
|
19650
|
-
"
|
|
19695
|
+
"kind": "PropertySignature",
|
|
19696
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#directIntensity:member",
|
|
19697
|
+
"docComment": "/**\n * Direct light intensity (PBR only). Default: 1\n */\n",
|
|
19698
|
+
"excerptTokens": [
|
|
19699
|
+
{
|
|
19700
|
+
"kind": "Content",
|
|
19701
|
+
"text": "directIntensity: "
|
|
19702
|
+
},
|
|
19703
|
+
{
|
|
19704
|
+
"kind": "Content",
|
|
19705
|
+
"text": "number | undefined"
|
|
19706
|
+
},
|
|
19707
|
+
{
|
|
19708
|
+
"kind": "Content",
|
|
19709
|
+
"text": ";"
|
|
19710
|
+
}
|
|
19711
|
+
],
|
|
19712
|
+
"isReadonly": false,
|
|
19713
|
+
"isOptional": false,
|
|
19714
|
+
"releaseTag": "Public",
|
|
19715
|
+
"name": "directIntensity",
|
|
19716
|
+
"propertyTypeTokenRange": {
|
|
19717
|
+
"startIndex": 1,
|
|
19718
|
+
"endIndex": 2
|
|
19719
|
+
}
|
|
19651
19720
|
},
|
|
19652
19721
|
{
|
|
19653
|
-
"kind": "
|
|
19654
|
-
"
|
|
19655
|
-
"
|
|
19722
|
+
"kind": "PropertySignature",
|
|
19723
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#emissiveColor:member",
|
|
19724
|
+
"docComment": "/**\n * Emissive color (PBR only). Default: black\n */\n",
|
|
19725
|
+
"excerptTokens": [
|
|
19726
|
+
{
|
|
19727
|
+
"kind": "Content",
|
|
19728
|
+
"text": "emissiveColor: "
|
|
19729
|
+
},
|
|
19730
|
+
{
|
|
19731
|
+
"kind": "Reference",
|
|
19732
|
+
"text": "Color3",
|
|
19733
|
+
"canonicalReference": "@dcl/playground-assets!Color3"
|
|
19734
|
+
},
|
|
19735
|
+
{
|
|
19736
|
+
"kind": "Content",
|
|
19737
|
+
"text": " | undefined"
|
|
19738
|
+
},
|
|
19739
|
+
{
|
|
19740
|
+
"kind": "Content",
|
|
19741
|
+
"text": ";"
|
|
19742
|
+
}
|
|
19743
|
+
],
|
|
19744
|
+
"isReadonly": false,
|
|
19745
|
+
"isOptional": false,
|
|
19746
|
+
"releaseTag": "Public",
|
|
19747
|
+
"name": "emissiveColor",
|
|
19748
|
+
"propertyTypeTokenRange": {
|
|
19749
|
+
"startIndex": 1,
|
|
19750
|
+
"endIndex": 3
|
|
19751
|
+
}
|
|
19656
19752
|
},
|
|
19657
19753
|
{
|
|
19658
|
-
"kind": "
|
|
19659
|
-
"
|
|
19754
|
+
"kind": "PropertySignature",
|
|
19755
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#emissiveIntensity:member",
|
|
19756
|
+
"docComment": "/**\n * Emissive intensity (PBR only). Default: 2\n */\n",
|
|
19757
|
+
"excerptTokens": [
|
|
19758
|
+
{
|
|
19759
|
+
"kind": "Content",
|
|
19760
|
+
"text": "emissiveIntensity: "
|
|
19761
|
+
},
|
|
19762
|
+
{
|
|
19763
|
+
"kind": "Content",
|
|
19764
|
+
"text": "number | undefined"
|
|
19765
|
+
},
|
|
19766
|
+
{
|
|
19767
|
+
"kind": "Content",
|
|
19768
|
+
"text": ";"
|
|
19769
|
+
}
|
|
19770
|
+
],
|
|
19771
|
+
"isReadonly": false,
|
|
19772
|
+
"isOptional": false,
|
|
19773
|
+
"releaseTag": "Public",
|
|
19774
|
+
"name": "emissiveIntensity",
|
|
19775
|
+
"propertyTypeTokenRange": {
|
|
19776
|
+
"startIndex": 1,
|
|
19777
|
+
"endIndex": 2
|
|
19778
|
+
}
|
|
19660
19779
|
},
|
|
19661
19780
|
{
|
|
19662
|
-
"kind": "
|
|
19663
|
-
"
|
|
19664
|
-
"
|
|
19781
|
+
"kind": "PropertySignature",
|
|
19782
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#emissiveTexture:member",
|
|
19783
|
+
"docComment": "/**\n * Access to the emissive texture properties (PBR only - returns undefined for Unlit materials)\n */\n",
|
|
19784
|
+
"excerptTokens": [
|
|
19785
|
+
{
|
|
19786
|
+
"kind": "Content",
|
|
19787
|
+
"text": "readonly emissiveTexture: "
|
|
19788
|
+
},
|
|
19789
|
+
{
|
|
19790
|
+
"kind": "Reference",
|
|
19791
|
+
"text": "FlatTexture",
|
|
19792
|
+
"canonicalReference": "@dcl/playground-assets!FlatTexture:interface"
|
|
19793
|
+
},
|
|
19794
|
+
{
|
|
19795
|
+
"kind": "Content",
|
|
19796
|
+
"text": " | undefined"
|
|
19797
|
+
},
|
|
19798
|
+
{
|
|
19799
|
+
"kind": "Content",
|
|
19800
|
+
"text": ";"
|
|
19801
|
+
}
|
|
19802
|
+
],
|
|
19803
|
+
"isReadonly": true,
|
|
19804
|
+
"isOptional": false,
|
|
19805
|
+
"releaseTag": "Public",
|
|
19806
|
+
"name": "emissiveTexture",
|
|
19807
|
+
"propertyTypeTokenRange": {
|
|
19808
|
+
"startIndex": 1,
|
|
19809
|
+
"endIndex": 3
|
|
19810
|
+
}
|
|
19665
19811
|
},
|
|
19666
19812
|
{
|
|
19667
|
-
"kind": "
|
|
19668
|
-
"
|
|
19813
|
+
"kind": "PropertySignature",
|
|
19814
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#metallic:member",
|
|
19815
|
+
"docComment": "/**\n * Metallic value 0-1 (PBR only). Default: 0.5\n */\n",
|
|
19816
|
+
"excerptTokens": [
|
|
19817
|
+
{
|
|
19818
|
+
"kind": "Content",
|
|
19819
|
+
"text": "metallic: "
|
|
19820
|
+
},
|
|
19821
|
+
{
|
|
19822
|
+
"kind": "Content",
|
|
19823
|
+
"text": "number | undefined"
|
|
19824
|
+
},
|
|
19825
|
+
{
|
|
19826
|
+
"kind": "Content",
|
|
19827
|
+
"text": ";"
|
|
19828
|
+
}
|
|
19829
|
+
],
|
|
19830
|
+
"isReadonly": false,
|
|
19831
|
+
"isOptional": false,
|
|
19832
|
+
"releaseTag": "Public",
|
|
19833
|
+
"name": "metallic",
|
|
19834
|
+
"propertyTypeTokenRange": {
|
|
19835
|
+
"startIndex": 1,
|
|
19836
|
+
"endIndex": 2
|
|
19837
|
+
}
|
|
19669
19838
|
},
|
|
19670
19839
|
{
|
|
19671
|
-
"kind": "
|
|
19672
|
-
"
|
|
19840
|
+
"kind": "PropertySignature",
|
|
19841
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#reflectivityColor:member",
|
|
19842
|
+
"docComment": "/**\n * Reflectivity color (PBR only). Default: white\n */\n",
|
|
19843
|
+
"excerptTokens": [
|
|
19844
|
+
{
|
|
19845
|
+
"kind": "Content",
|
|
19846
|
+
"text": "reflectivityColor: "
|
|
19847
|
+
},
|
|
19848
|
+
{
|
|
19849
|
+
"kind": "Reference",
|
|
19850
|
+
"text": "Color3",
|
|
19851
|
+
"canonicalReference": "@dcl/playground-assets!Color3"
|
|
19852
|
+
},
|
|
19853
|
+
{
|
|
19854
|
+
"kind": "Content",
|
|
19855
|
+
"text": " | undefined"
|
|
19856
|
+
},
|
|
19857
|
+
{
|
|
19858
|
+
"kind": "Content",
|
|
19859
|
+
"text": ";"
|
|
19860
|
+
}
|
|
19861
|
+
],
|
|
19862
|
+
"isReadonly": false,
|
|
19863
|
+
"isOptional": false,
|
|
19864
|
+
"releaseTag": "Public",
|
|
19865
|
+
"name": "reflectivityColor",
|
|
19866
|
+
"propertyTypeTokenRange": {
|
|
19867
|
+
"startIndex": 1,
|
|
19868
|
+
"endIndex": 3
|
|
19869
|
+
}
|
|
19673
19870
|
},
|
|
19674
19871
|
{
|
|
19675
|
-
"kind": "
|
|
19676
|
-
"
|
|
19677
|
-
"
|
|
19872
|
+
"kind": "PropertySignature",
|
|
19873
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#roughness:member",
|
|
19874
|
+
"docComment": "/**\n * Roughness value 0-1 (PBR only). Default: 0.5\n */\n",
|
|
19875
|
+
"excerptTokens": [
|
|
19876
|
+
{
|
|
19877
|
+
"kind": "Content",
|
|
19878
|
+
"text": "roughness: "
|
|
19879
|
+
},
|
|
19880
|
+
{
|
|
19881
|
+
"kind": "Content",
|
|
19882
|
+
"text": "number | undefined"
|
|
19883
|
+
},
|
|
19884
|
+
{
|
|
19885
|
+
"kind": "Content",
|
|
19886
|
+
"text": ";"
|
|
19887
|
+
}
|
|
19888
|
+
],
|
|
19889
|
+
"isReadonly": false,
|
|
19890
|
+
"isOptional": false,
|
|
19891
|
+
"releaseTag": "Public",
|
|
19892
|
+
"name": "roughness",
|
|
19893
|
+
"propertyTypeTokenRange": {
|
|
19894
|
+
"startIndex": 1,
|
|
19895
|
+
"endIndex": 2
|
|
19896
|
+
}
|
|
19678
19897
|
},
|
|
19679
19898
|
{
|
|
19680
|
-
"kind": "
|
|
19681
|
-
"
|
|
19899
|
+
"kind": "PropertySignature",
|
|
19900
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#specularIntensity:member",
|
|
19901
|
+
"docComment": "/**\n * Specular intensity (PBR only). Default: 1\n */\n",
|
|
19902
|
+
"excerptTokens": [
|
|
19903
|
+
{
|
|
19904
|
+
"kind": "Content",
|
|
19905
|
+
"text": "specularIntensity: "
|
|
19906
|
+
},
|
|
19907
|
+
{
|
|
19908
|
+
"kind": "Content",
|
|
19909
|
+
"text": "number | undefined"
|
|
19910
|
+
},
|
|
19911
|
+
{
|
|
19912
|
+
"kind": "Content",
|
|
19913
|
+
"text": ";"
|
|
19914
|
+
}
|
|
19915
|
+
],
|
|
19916
|
+
"isReadonly": false,
|
|
19917
|
+
"isOptional": false,
|
|
19918
|
+
"releaseTag": "Public",
|
|
19919
|
+
"name": "specularIntensity",
|
|
19920
|
+
"propertyTypeTokenRange": {
|
|
19921
|
+
"startIndex": 1,
|
|
19922
|
+
"endIndex": 2
|
|
19923
|
+
}
|
|
19682
19924
|
},
|
|
19683
19925
|
{
|
|
19684
|
-
"kind": "
|
|
19685
|
-
"
|
|
19686
|
-
"
|
|
19687
|
-
|
|
19926
|
+
"kind": "PropertySignature",
|
|
19927
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#texture:member",
|
|
19928
|
+
"docComment": "/**\n * Access to the main texture properties (works for both PBR and Unlit materials)\n */\n",
|
|
19929
|
+
"excerptTokens": [
|
|
19930
|
+
{
|
|
19931
|
+
"kind": "Content",
|
|
19932
|
+
"text": "readonly texture: "
|
|
19933
|
+
},
|
|
19934
|
+
{
|
|
19935
|
+
"kind": "Reference",
|
|
19936
|
+
"text": "FlatTexture",
|
|
19937
|
+
"canonicalReference": "@dcl/playground-assets!FlatTexture:interface"
|
|
19938
|
+
},
|
|
19939
|
+
{
|
|
19940
|
+
"kind": "Content",
|
|
19941
|
+
"text": ";"
|
|
19942
|
+
}
|
|
19943
|
+
],
|
|
19944
|
+
"isReadonly": true,
|
|
19945
|
+
"isOptional": false,
|
|
19946
|
+
"releaseTag": "Public",
|
|
19947
|
+
"name": "texture",
|
|
19948
|
+
"propertyTypeTokenRange": {
|
|
19949
|
+
"startIndex": 1,
|
|
19950
|
+
"endIndex": 2
|
|
19951
|
+
}
|
|
19952
|
+
},
|
|
19953
|
+
{
|
|
19954
|
+
"kind": "PropertySignature",
|
|
19955
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial#transparencyMode:member",
|
|
19956
|
+
"docComment": "/**\n * Transparency mode (PBR only). Default: MTM_AUTO\n */\n",
|
|
19957
|
+
"excerptTokens": [
|
|
19958
|
+
{
|
|
19959
|
+
"kind": "Content",
|
|
19960
|
+
"text": "transparencyMode: "
|
|
19961
|
+
},
|
|
19962
|
+
{
|
|
19963
|
+
"kind": "Reference",
|
|
19964
|
+
"text": "MaterialTransparencyMode",
|
|
19965
|
+
"canonicalReference": "@dcl/playground-assets!MaterialTransparencyMode:enum"
|
|
19966
|
+
},
|
|
19967
|
+
{
|
|
19968
|
+
"kind": "Content",
|
|
19969
|
+
"text": " | undefined"
|
|
19970
|
+
},
|
|
19971
|
+
{
|
|
19972
|
+
"kind": "Content",
|
|
19973
|
+
"text": ";"
|
|
19974
|
+
}
|
|
19975
|
+
],
|
|
19976
|
+
"isReadonly": false,
|
|
19977
|
+
"isOptional": false,
|
|
19978
|
+
"releaseTag": "Public",
|
|
19979
|
+
"name": "transparencyMode",
|
|
19980
|
+
"propertyTypeTokenRange": {
|
|
19981
|
+
"startIndex": 1,
|
|
19982
|
+
"endIndex": 3
|
|
19983
|
+
}
|
|
19984
|
+
}
|
|
19985
|
+
],
|
|
19986
|
+
"extendsTokenRanges": []
|
|
19987
|
+
},
|
|
19988
|
+
{
|
|
19989
|
+
"kind": "Interface",
|
|
19990
|
+
"canonicalReference": "@dcl/playground-assets!FlatTexture:interface",
|
|
19991
|
+
"docComment": "/**\n * Flattened texture interface for simplified property access\n *\n * @public\n */\n",
|
|
19992
|
+
"excerptTokens": [
|
|
19993
|
+
{
|
|
19994
|
+
"kind": "Content",
|
|
19995
|
+
"text": "export interface FlatTexture "
|
|
19996
|
+
}
|
|
19997
|
+
],
|
|
19998
|
+
"fileUrlPath": "../ecs/dist/components/extended/Material.d.ts",
|
|
19999
|
+
"releaseTag": "Public",
|
|
20000
|
+
"name": "FlatTexture",
|
|
20001
|
+
"preserveMemberOrder": false,
|
|
20002
|
+
"members": [
|
|
20003
|
+
{
|
|
20004
|
+
"kind": "PropertySignature",
|
|
20005
|
+
"canonicalReference": "@dcl/playground-assets!FlatTexture#filterMode:member",
|
|
20006
|
+
"docComment": "/**\n * Texture filtering mode\n */\n",
|
|
20007
|
+
"excerptTokens": [
|
|
20008
|
+
{
|
|
20009
|
+
"kind": "Content",
|
|
20010
|
+
"text": "filterMode: "
|
|
20011
|
+
},
|
|
20012
|
+
{
|
|
20013
|
+
"kind": "Reference",
|
|
20014
|
+
"text": "TextureFilterMode",
|
|
20015
|
+
"canonicalReference": "@dcl/playground-assets!TextureFilterMode:enum"
|
|
20016
|
+
},
|
|
20017
|
+
{
|
|
20018
|
+
"kind": "Content",
|
|
20019
|
+
"text": " | undefined"
|
|
20020
|
+
},
|
|
20021
|
+
{
|
|
20022
|
+
"kind": "Content",
|
|
20023
|
+
"text": ";"
|
|
20024
|
+
}
|
|
20025
|
+
],
|
|
20026
|
+
"isReadonly": false,
|
|
20027
|
+
"isOptional": false,
|
|
20028
|
+
"releaseTag": "Public",
|
|
20029
|
+
"name": "filterMode",
|
|
20030
|
+
"propertyTypeTokenRange": {
|
|
20031
|
+
"startIndex": 1,
|
|
20032
|
+
"endIndex": 3
|
|
20033
|
+
}
|
|
20034
|
+
},
|
|
20035
|
+
{
|
|
20036
|
+
"kind": "PropertySignature",
|
|
20037
|
+
"canonicalReference": "@dcl/playground-assets!FlatTexture#src:member",
|
|
20038
|
+
"docComment": "/**\n * Path to the texture file\n */\n",
|
|
20039
|
+
"excerptTokens": [
|
|
20040
|
+
{
|
|
20041
|
+
"kind": "Content",
|
|
20042
|
+
"text": "src: "
|
|
20043
|
+
},
|
|
20044
|
+
{
|
|
20045
|
+
"kind": "Content",
|
|
20046
|
+
"text": "string | undefined"
|
|
20047
|
+
},
|
|
20048
|
+
{
|
|
20049
|
+
"kind": "Content",
|
|
20050
|
+
"text": ";"
|
|
20051
|
+
}
|
|
20052
|
+
],
|
|
20053
|
+
"isReadonly": false,
|
|
20054
|
+
"isOptional": false,
|
|
20055
|
+
"releaseTag": "Public",
|
|
20056
|
+
"name": "src",
|
|
20057
|
+
"propertyTypeTokenRange": {
|
|
20058
|
+
"startIndex": 1,
|
|
20059
|
+
"endIndex": 2
|
|
20060
|
+
}
|
|
20061
|
+
},
|
|
20062
|
+
{
|
|
20063
|
+
"kind": "PropertySignature",
|
|
20064
|
+
"canonicalReference": "@dcl/playground-assets!FlatTexture#wrapMode:member",
|
|
20065
|
+
"docComment": "/**\n * Texture wrapping behavior\n */\n",
|
|
20066
|
+
"excerptTokens": [
|
|
20067
|
+
{
|
|
20068
|
+
"kind": "Content",
|
|
20069
|
+
"text": "wrapMode: "
|
|
20070
|
+
},
|
|
20071
|
+
{
|
|
20072
|
+
"kind": "Reference",
|
|
20073
|
+
"text": "TextureWrapMode",
|
|
20074
|
+
"canonicalReference": "@dcl/playground-assets!TextureWrapMode:enum"
|
|
20075
|
+
},
|
|
20076
|
+
{
|
|
20077
|
+
"kind": "Content",
|
|
20078
|
+
"text": " | undefined"
|
|
20079
|
+
},
|
|
20080
|
+
{
|
|
20081
|
+
"kind": "Content",
|
|
20082
|
+
"text": ";"
|
|
20083
|
+
}
|
|
20084
|
+
],
|
|
20085
|
+
"isReadonly": false,
|
|
20086
|
+
"isOptional": false,
|
|
20087
|
+
"releaseTag": "Public",
|
|
20088
|
+
"name": "wrapMode",
|
|
20089
|
+
"propertyTypeTokenRange": {
|
|
20090
|
+
"startIndex": 1,
|
|
20091
|
+
"endIndex": 3
|
|
20092
|
+
}
|
|
20093
|
+
}
|
|
20094
|
+
],
|
|
20095
|
+
"extendsTokenRanges": []
|
|
20096
|
+
},
|
|
20097
|
+
{
|
|
20098
|
+
"kind": "TypeAlias",
|
|
20099
|
+
"canonicalReference": "@dcl/playground-assets!FlexDirectionType:type",
|
|
20100
|
+
"docComment": "/**\n * @public\n */\n",
|
|
20101
|
+
"excerptTokens": [
|
|
20102
|
+
{
|
|
20103
|
+
"kind": "Content",
|
|
20104
|
+
"text": "export type FlexDirectionType = "
|
|
20105
|
+
},
|
|
20106
|
+
{
|
|
20107
|
+
"kind": "Content",
|
|
20108
|
+
"text": "'row' | 'column' | 'column-reverse' | 'row-reverse'"
|
|
20109
|
+
},
|
|
20110
|
+
{
|
|
20111
|
+
"kind": "Content",
|
|
20112
|
+
"text": ";"
|
|
20113
|
+
}
|
|
20114
|
+
],
|
|
20115
|
+
"fileUrlPath": "../react-ecs/dist/components/uiTransform/types.d.ts",
|
|
20116
|
+
"releaseTag": "Public",
|
|
20117
|
+
"name": "FlexDirectionType",
|
|
20118
|
+
"typeTokenRange": {
|
|
20119
|
+
"startIndex": 1,
|
|
20120
|
+
"endIndex": 2
|
|
20121
|
+
}
|
|
20122
|
+
},
|
|
20123
|
+
{
|
|
20124
|
+
"kind": "TypeAlias",
|
|
20125
|
+
"canonicalReference": "@dcl/playground-assets!FlexWrapType:type",
|
|
20126
|
+
"docComment": "/**\n * @public\n */\n",
|
|
20127
|
+
"excerptTokens": [
|
|
20128
|
+
{
|
|
20129
|
+
"kind": "Content",
|
|
20130
|
+
"text": "export type FlexWrapType = "
|
|
20131
|
+
},
|
|
20132
|
+
{
|
|
20133
|
+
"kind": "Content",
|
|
20134
|
+
"text": "'wrap' | 'nowrap' | 'wrap-reverse'"
|
|
20135
|
+
},
|
|
20136
|
+
{
|
|
20137
|
+
"kind": "Content",
|
|
20138
|
+
"text": ";"
|
|
20139
|
+
}
|
|
20140
|
+
],
|
|
20141
|
+
"fileUrlPath": "../react-ecs/dist/components/uiTransform/types.d.ts",
|
|
20142
|
+
"releaseTag": "Public",
|
|
20143
|
+
"name": "FlexWrapType",
|
|
20144
|
+
"typeTokenRange": {
|
|
20145
|
+
"startIndex": 1,
|
|
20146
|
+
"endIndex": 2
|
|
20147
|
+
}
|
|
20148
|
+
},
|
|
20149
|
+
{
|
|
20150
|
+
"kind": "TypeAlias",
|
|
20151
|
+
"canonicalReference": "@dcl/playground-assets!FloatArray:type",
|
|
20152
|
+
"docComment": "/**\n * @public\n */\n",
|
|
20153
|
+
"excerptTokens": [
|
|
20154
|
+
{
|
|
20155
|
+
"kind": "Content",
|
|
20156
|
+
"text": "export declare type FloatArray = "
|
|
20157
|
+
},
|
|
20158
|
+
{
|
|
20159
|
+
"kind": "Content",
|
|
20160
|
+
"text": "number[]"
|
|
20161
|
+
},
|
|
20162
|
+
{
|
|
20163
|
+
"kind": "Content",
|
|
20164
|
+
"text": ";"
|
|
20165
|
+
}
|
|
20166
|
+
],
|
|
20167
|
+
"fileUrlPath": "../sdk/node_modules/@dcl/ecs-math/dist/types.d.ts",
|
|
20168
|
+
"releaseTag": "Public",
|
|
20169
|
+
"name": "FloatArray",
|
|
20170
|
+
"typeTokenRange": {
|
|
20171
|
+
"startIndex": 1,
|
|
20172
|
+
"endIndex": 2
|
|
20173
|
+
}
|
|
20174
|
+
},
|
|
20175
|
+
{
|
|
20176
|
+
"kind": "Enum",
|
|
20177
|
+
"canonicalReference": "@dcl/playground-assets!Font:enum",
|
|
20178
|
+
"docComment": "/**\n * @public\n */\n",
|
|
20179
|
+
"excerptTokens": [
|
|
20180
|
+
{
|
|
20181
|
+
"kind": "Content",
|
|
20182
|
+
"text": "export declare const enum Font "
|
|
20183
|
+
}
|
|
20184
|
+
],
|
|
20185
|
+
"fileUrlPath": "../ecs/dist/components/generated/pb/decentraland/sdk/components/common/texts.gen.d.ts",
|
|
20186
|
+
"releaseTag": "Public",
|
|
20187
|
+
"name": "Font",
|
|
20188
|
+
"preserveMemberOrder": false,
|
|
20189
|
+
"members": [
|
|
20190
|
+
{
|
|
20191
|
+
"kind": "EnumMember",
|
|
20192
|
+
"canonicalReference": "@dcl/playground-assets!Font.F_MONOSPACE:member",
|
|
20193
|
+
"docComment": "",
|
|
20194
|
+
"excerptTokens": [
|
|
20195
|
+
{
|
|
20196
|
+
"kind": "Content",
|
|
20197
|
+
"text": "F_MONOSPACE = "
|
|
20198
|
+
},
|
|
20199
|
+
{
|
|
20200
|
+
"kind": "Content",
|
|
20201
|
+
"text": "2"
|
|
20202
|
+
}
|
|
20203
|
+
],
|
|
20204
|
+
"initializerTokenRange": {
|
|
20205
|
+
"startIndex": 1,
|
|
20206
|
+
"endIndex": 2
|
|
20207
|
+
},
|
|
20208
|
+
"releaseTag": "Public",
|
|
20209
|
+
"name": "F_MONOSPACE"
|
|
20210
|
+
},
|
|
20211
|
+
{
|
|
20212
|
+
"kind": "EnumMember",
|
|
20213
|
+
"canonicalReference": "@dcl/playground-assets!Font.F_SANS_SERIF:member",
|
|
20214
|
+
"docComment": "",
|
|
20215
|
+
"excerptTokens": [
|
|
20216
|
+
{
|
|
20217
|
+
"kind": "Content",
|
|
20218
|
+
"text": "F_SANS_SERIF = "
|
|
20219
|
+
},
|
|
20220
|
+
{
|
|
20221
|
+
"kind": "Content",
|
|
20222
|
+
"text": "0"
|
|
20223
|
+
}
|
|
20224
|
+
],
|
|
20225
|
+
"initializerTokenRange": {
|
|
20226
|
+
"startIndex": 1,
|
|
20227
|
+
"endIndex": 2
|
|
20228
|
+
},
|
|
20229
|
+
"releaseTag": "Public",
|
|
20230
|
+
"name": "F_SANS_SERIF"
|
|
20231
|
+
},
|
|
20232
|
+
{
|
|
20233
|
+
"kind": "EnumMember",
|
|
20234
|
+
"canonicalReference": "@dcl/playground-assets!Font.F_SERIF:member",
|
|
20235
|
+
"docComment": "",
|
|
20236
|
+
"excerptTokens": [
|
|
20237
|
+
{
|
|
20238
|
+
"kind": "Content",
|
|
20239
|
+
"text": "F_SERIF = "
|
|
20240
|
+
},
|
|
20241
|
+
{
|
|
20242
|
+
"kind": "Content",
|
|
20243
|
+
"text": "1"
|
|
20244
|
+
}
|
|
20245
|
+
],
|
|
20246
|
+
"initializerTokenRange": {
|
|
20247
|
+
"startIndex": 1,
|
|
20248
|
+
"endIndex": 2
|
|
20249
|
+
},
|
|
20250
|
+
"releaseTag": "Public",
|
|
20251
|
+
"name": "F_SERIF"
|
|
20252
|
+
}
|
|
20253
|
+
]
|
|
20254
|
+
},
|
|
20255
|
+
{
|
|
20256
|
+
"kind": "Function",
|
|
20257
|
+
"canonicalReference": "@dcl/playground-assets!getComponentEntityTree:function(1)",
|
|
20258
|
+
"docComment": "/**\n * Get an iterator of entities that follow a tree structure for a component\n *\n * @param engine - the engine running the entities\n *\n * @param entity - the root entity of the tree\n *\n * @param component - the parenting component to filter by\n *\n * @returns An iterator of an array as [entity, entity2, ...]\n *\n * Example:\n * ```ts\n * const TreeComponent = engine.defineComponent('custom::TreeComponent', {\n * label: Schemas.String,\n * parent: Schemas.Entity\n * })\n *\n * for (const entity of getComponentEntityTree(engine, entity, TreeComponent)) {\n * // entity in the tree\n * }\n * ```\n *\n * @public\n */\n",
|
|
20259
|
+
"excerptTokens": [
|
|
20260
|
+
{
|
|
20261
|
+
"kind": "Content",
|
|
20262
|
+
"text": "export declare function getComponentEntityTree<T>(engine: "
|
|
20263
|
+
},
|
|
20264
|
+
{
|
|
20265
|
+
"kind": "Reference",
|
|
20266
|
+
"text": "Pick",
|
|
20267
|
+
"canonicalReference": "!Pick:type"
|
|
20268
|
+
},
|
|
20269
|
+
{
|
|
20270
|
+
"kind": "Content",
|
|
20271
|
+
"text": "<"
|
|
20272
|
+
},
|
|
20273
|
+
{
|
|
20274
|
+
"kind": "Reference",
|
|
20275
|
+
"text": "IEngine",
|
|
20276
|
+
"canonicalReference": "@dcl/playground-assets!IEngine:interface"
|
|
20277
|
+
},
|
|
20278
|
+
{
|
|
20279
|
+
"kind": "Content",
|
|
20280
|
+
"text": ", 'getEntitiesWith'>"
|
|
20281
|
+
},
|
|
20282
|
+
{
|
|
20283
|
+
"kind": "Content",
|
|
20284
|
+
"text": ", entity: "
|
|
20285
|
+
},
|
|
20286
|
+
{
|
|
20287
|
+
"kind": "Reference",
|
|
20288
|
+
"text": "Entity",
|
|
20289
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
20290
|
+
},
|
|
20291
|
+
{
|
|
20292
|
+
"kind": "Content",
|
|
20293
|
+
"text": ", component: "
|
|
20294
|
+
},
|
|
20295
|
+
{
|
|
20296
|
+
"kind": "Reference",
|
|
20297
|
+
"text": "ComponentDefinition",
|
|
20298
|
+
"canonicalReference": "@dcl/playground-assets!ComponentDefinition:type"
|
|
20299
|
+
},
|
|
20300
|
+
{
|
|
20301
|
+
"kind": "Content",
|
|
20302
|
+
"text": "<T & {\n parent?: "
|
|
20303
|
+
},
|
|
20304
|
+
{
|
|
20305
|
+
"kind": "Reference",
|
|
20306
|
+
"text": "Entity",
|
|
20307
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
20308
|
+
},
|
|
20309
|
+
{
|
|
20310
|
+
"kind": "Content",
|
|
20311
|
+
"text": ";\n}>"
|
|
20312
|
+
},
|
|
20313
|
+
{
|
|
20314
|
+
"kind": "Content",
|
|
20315
|
+
"text": "): "
|
|
20316
|
+
},
|
|
20317
|
+
{
|
|
20318
|
+
"kind": "Reference",
|
|
20319
|
+
"text": "Generator",
|
|
20320
|
+
"canonicalReference": "!Generator:interface"
|
|
20321
|
+
},
|
|
20322
|
+
{
|
|
20323
|
+
"kind": "Content",
|
|
20324
|
+
"text": "<"
|
|
20325
|
+
},
|
|
20326
|
+
{
|
|
20327
|
+
"kind": "Reference",
|
|
20328
|
+
"text": "Entity",
|
|
20329
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
20330
|
+
},
|
|
19688
20331
|
{
|
|
19689
20332
|
"kind": "Content",
|
|
19690
20333
|
"text": ">"
|
|
@@ -19859,142 +20502,351 @@
|
|
|
19859
20502
|
"name": "getDefaultOpts"
|
|
19860
20503
|
},
|
|
19861
20504
|
{
|
|
19862
|
-
"kind": "
|
|
19863
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
19864
|
-
"docComment": "",
|
|
20505
|
+
"kind": "Function",
|
|
20506
|
+
"canonicalReference": "@dcl/playground-assets!getEntitiesWithParent:function(1)",
|
|
20507
|
+
"docComment": "/**\n * Get all entities that have the given entity as their parent\n *\n * @param engine - the engine running the entities\n *\n * @param parent - the parent entity to find children for\n *\n * @returns An array of entities that have the given parent\n *\n * Example:\n * ```ts\n * const children = getEntitiesWithParent(engine, myEntity)\n * for (const child of children) {\n * // process each child entity\n * }\n * ```\n *\n * @public\n */\n",
|
|
19865
20508
|
"excerptTokens": [
|
|
19866
20509
|
{
|
|
19867
20510
|
"kind": "Content",
|
|
19868
|
-
"text": "export
|
|
20511
|
+
"text": "export declare function getEntitiesWithParent(engine: "
|
|
19869
20512
|
},
|
|
19870
20513
|
{
|
|
19871
20514
|
"kind": "Reference",
|
|
19872
|
-
"text": "
|
|
19873
|
-
"canonicalReference": "
|
|
20515
|
+
"text": "Pick",
|
|
20516
|
+
"canonicalReference": "!Pick:type"
|
|
19874
20517
|
},
|
|
19875
20518
|
{
|
|
19876
20519
|
"kind": "Content",
|
|
19877
|
-
"text": "
|
|
20520
|
+
"text": "<"
|
|
19878
20521
|
},
|
|
19879
20522
|
{
|
|
19880
20523
|
"kind": "Reference",
|
|
19881
|
-
"text": "
|
|
19882
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
20524
|
+
"text": "IEngine",
|
|
20525
|
+
"canonicalReference": "@dcl/playground-assets!IEngine:interface"
|
|
19883
20526
|
},
|
|
19884
20527
|
{
|
|
19885
20528
|
"kind": "Content",
|
|
19886
|
-
"text": "
|
|
19887
|
-
}
|
|
19888
|
-
],
|
|
19889
|
-
"fileUrlPath": "../ecs/dist/systems/raycast.d.ts",
|
|
19890
|
-
"releaseTag": "Public",
|
|
19891
|
-
"name": "GlobalDirectionRaycastOptions",
|
|
19892
|
-
"typeTokenRange": {
|
|
19893
|
-
"startIndex": 1,
|
|
19894
|
-
"endIndex": 4
|
|
19895
|
-
}
|
|
19896
|
-
},
|
|
19897
|
-
{
|
|
19898
|
-
"kind": "TypeAlias",
|
|
19899
|
-
"canonicalReference": "@dcl/playground-assets!GlobalDirectionRaycastSystemOptions:type",
|
|
19900
|
-
"docComment": "",
|
|
19901
|
-
"excerptTokens": [
|
|
20529
|
+
"text": ", 'getEntitiesWith' | 'defineComponentFromSchema'>"
|
|
20530
|
+
},
|
|
19902
20531
|
{
|
|
19903
20532
|
"kind": "Content",
|
|
19904
|
-
"text": "
|
|
20533
|
+
"text": ", parent: "
|
|
20534
|
+
},
|
|
20535
|
+
{
|
|
20536
|
+
"kind": "Reference",
|
|
20537
|
+
"text": "Entity",
|
|
20538
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
19905
20539
|
},
|
|
19906
20540
|
{
|
|
19907
20541
|
"kind": "Content",
|
|
19908
|
-
"text": "
|
|
20542
|
+
"text": "): "
|
|
19909
20543
|
},
|
|
19910
20544
|
{
|
|
19911
20545
|
"kind": "Reference",
|
|
19912
|
-
"text": "
|
|
19913
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
20546
|
+
"text": "Entity",
|
|
20547
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
19914
20548
|
},
|
|
19915
20549
|
{
|
|
19916
20550
|
"kind": "Content",
|
|
19917
|
-
"text": "
|
|
20551
|
+
"text": "[]"
|
|
19918
20552
|
},
|
|
19919
20553
|
{
|
|
19920
20554
|
"kind": "Content",
|
|
19921
20555
|
"text": ";"
|
|
19922
20556
|
}
|
|
19923
20557
|
],
|
|
19924
|
-
"fileUrlPath": "../ecs/dist/
|
|
20558
|
+
"fileUrlPath": "../ecs/dist/runtime/helpers/tree.d.ts",
|
|
20559
|
+
"returnTypeTokenRange": {
|
|
20560
|
+
"startIndex": 8,
|
|
20561
|
+
"endIndex": 10
|
|
20562
|
+
},
|
|
19925
20563
|
"releaseTag": "Public",
|
|
19926
|
-
"
|
|
19927
|
-
"
|
|
19928
|
-
|
|
19929
|
-
|
|
19930
|
-
|
|
20564
|
+
"overloadIndex": 1,
|
|
20565
|
+
"parameters": [
|
|
20566
|
+
{
|
|
20567
|
+
"parameterName": "engine",
|
|
20568
|
+
"parameterTypeTokenRange": {
|
|
20569
|
+
"startIndex": 1,
|
|
20570
|
+
"endIndex": 5
|
|
20571
|
+
},
|
|
20572
|
+
"isOptional": false
|
|
20573
|
+
},
|
|
20574
|
+
{
|
|
20575
|
+
"parameterName": "parent",
|
|
20576
|
+
"parameterTypeTokenRange": {
|
|
20577
|
+
"startIndex": 6,
|
|
20578
|
+
"endIndex": 7
|
|
20579
|
+
},
|
|
20580
|
+
"isOptional": false
|
|
20581
|
+
}
|
|
20582
|
+
],
|
|
20583
|
+
"name": "getEntitiesWithParent"
|
|
19931
20584
|
},
|
|
19932
20585
|
{
|
|
19933
|
-
"kind": "
|
|
19934
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
19935
|
-
"docComment": "",
|
|
20586
|
+
"kind": "Function",
|
|
20587
|
+
"canonicalReference": "@dcl/playground-assets!getWorldPosition:function(1)",
|
|
20588
|
+
"docComment": "/**\n * Get the world position of an entity, taking into account the full parent hierarchy. This computes the world-space position by accumulating all parent transforms (position, rotation, and scale).\n *\n * When the entity has AvatarAttach and Transform, the renderer updates the Transform with avatar-relative values (including the exact anchor point offset for hand, head, etc.). This function combines the player's transform with those values to compute the world position.\n *\n * @param engine - the engine running the entities\n *\n * @param entity - the entity to get the world position for\n *\n * @returns The entity's position in world space. Returns `{x: 0, y: 0, z: 0}` if the entity has no Transform.\n *\n * Example:\n * ```ts\n * const worldPos = getWorldPosition(engine, childEntity)\n * console.log(`World position: ${worldPos.x}, ${worldPos.y}, ${worldPos.z}`)\n * ```\n *\n * @public\n */\n",
|
|
19936
20589
|
"excerptTokens": [
|
|
19937
20590
|
{
|
|
19938
20591
|
"kind": "Content",
|
|
19939
|
-
"text": "export
|
|
20592
|
+
"text": "export declare function getWorldPosition(engine: "
|
|
19940
20593
|
},
|
|
19941
20594
|
{
|
|
19942
20595
|
"kind": "Reference",
|
|
19943
|
-
"text": "
|
|
19944
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
20596
|
+
"text": "WorldTransformEngine",
|
|
20597
|
+
"canonicalReference": "@dcl/playground-assets!WorldTransformEngine:type"
|
|
19945
20598
|
},
|
|
19946
20599
|
{
|
|
19947
20600
|
"kind": "Content",
|
|
19948
|
-
"text": "
|
|
20601
|
+
"text": ", entity: "
|
|
19949
20602
|
},
|
|
19950
20603
|
{
|
|
19951
20604
|
"kind": "Reference",
|
|
19952
|
-
"text": "
|
|
19953
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
19954
|
-
},
|
|
19955
|
-
{
|
|
19956
|
-
"kind": "Content",
|
|
19957
|
-
"text": ";"
|
|
19958
|
-
}
|
|
19959
|
-
],
|
|
19960
|
-
"fileUrlPath": "../ecs/dist/systems/raycast.d.ts",
|
|
19961
|
-
"releaseTag": "Public",
|
|
19962
|
-
"name": "GlobalTargetRaycastOptions",
|
|
19963
|
-
"typeTokenRange": {
|
|
19964
|
-
"startIndex": 1,
|
|
19965
|
-
"endIndex": 4
|
|
19966
|
-
}
|
|
19967
|
-
},
|
|
19968
|
-
{
|
|
19969
|
-
"kind": "TypeAlias",
|
|
19970
|
-
"canonicalReference": "@dcl/playground-assets!GlobalTargetRaycastSystemOptions:type",
|
|
19971
|
-
"docComment": "",
|
|
19972
|
-
"excerptTokens": [
|
|
19973
|
-
{
|
|
19974
|
-
"kind": "Content",
|
|
19975
|
-
"text": "export type GlobalTargetRaycastSystemOptions = "
|
|
20605
|
+
"text": "Entity",
|
|
20606
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
19976
20607
|
},
|
|
19977
20608
|
{
|
|
19978
20609
|
"kind": "Content",
|
|
19979
|
-
"text": "
|
|
20610
|
+
"text": "): "
|
|
19980
20611
|
},
|
|
19981
20612
|
{
|
|
19982
20613
|
"kind": "Reference",
|
|
19983
|
-
"text": "
|
|
19984
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
19985
|
-
},
|
|
19986
|
-
{
|
|
19987
|
-
"kind": "Content",
|
|
19988
|
-
"text": ";\n}"
|
|
20614
|
+
"text": "Vector3Type",
|
|
20615
|
+
"canonicalReference": "@dcl/playground-assets!Vector3Type:type"
|
|
19989
20616
|
},
|
|
19990
20617
|
{
|
|
19991
20618
|
"kind": "Content",
|
|
19992
20619
|
"text": ";"
|
|
19993
20620
|
}
|
|
19994
20621
|
],
|
|
19995
|
-
"fileUrlPath": "../ecs/dist/
|
|
20622
|
+
"fileUrlPath": "../ecs/dist/runtime/helpers/tree.d.ts",
|
|
20623
|
+
"returnTypeTokenRange": {
|
|
20624
|
+
"startIndex": 5,
|
|
20625
|
+
"endIndex": 6
|
|
20626
|
+
},
|
|
19996
20627
|
"releaseTag": "Public",
|
|
19997
|
-
"
|
|
20628
|
+
"overloadIndex": 1,
|
|
20629
|
+
"parameters": [
|
|
20630
|
+
{
|
|
20631
|
+
"parameterName": "engine",
|
|
20632
|
+
"parameterTypeTokenRange": {
|
|
20633
|
+
"startIndex": 1,
|
|
20634
|
+
"endIndex": 2
|
|
20635
|
+
},
|
|
20636
|
+
"isOptional": false
|
|
20637
|
+
},
|
|
20638
|
+
{
|
|
20639
|
+
"parameterName": "entity",
|
|
20640
|
+
"parameterTypeTokenRange": {
|
|
20641
|
+
"startIndex": 3,
|
|
20642
|
+
"endIndex": 4
|
|
20643
|
+
},
|
|
20644
|
+
"isOptional": false
|
|
20645
|
+
}
|
|
20646
|
+
],
|
|
20647
|
+
"name": "getWorldPosition"
|
|
20648
|
+
},
|
|
20649
|
+
{
|
|
20650
|
+
"kind": "Function",
|
|
20651
|
+
"canonicalReference": "@dcl/playground-assets!getWorldRotation:function(1)",
|
|
20652
|
+
"docComment": "/**\n * Get the world rotation of an entity, taking into account the full parent hierarchy. This computes the world-space rotation by combining all parent rotations.\n *\n * When the entity has AvatarAttach and Transform, the renderer updates the Transform with avatar-relative values (including the exact anchor point rotation for hand, head, etc.). This function combines the player's rotation with those values to compute the world rotation.\n *\n * @param engine - the engine running the entities\n *\n * @param entity - the entity to get the world rotation for\n *\n * @returns The entity's rotation in world space as a quaternion. Returns identity quaternion `{x: 0, y: 0, z: 0, w: 1}` if the entity has no Transform.\n *\n * Example:\n * ```ts\n * const worldRot = getWorldRotation(engine, childEntity)\n * console.log(`World rotation: ${worldRot.x}, ${worldRot.y}, ${worldRot.z}, ${worldRot.w}`)\n * ```\n *\n * @public\n */\n",
|
|
20653
|
+
"excerptTokens": [
|
|
20654
|
+
{
|
|
20655
|
+
"kind": "Content",
|
|
20656
|
+
"text": "export declare function getWorldRotation(engine: "
|
|
20657
|
+
},
|
|
20658
|
+
{
|
|
20659
|
+
"kind": "Reference",
|
|
20660
|
+
"text": "WorldTransformEngine",
|
|
20661
|
+
"canonicalReference": "@dcl/playground-assets!WorldTransformEngine:type"
|
|
20662
|
+
},
|
|
20663
|
+
{
|
|
20664
|
+
"kind": "Content",
|
|
20665
|
+
"text": ", entity: "
|
|
20666
|
+
},
|
|
20667
|
+
{
|
|
20668
|
+
"kind": "Reference",
|
|
20669
|
+
"text": "Entity",
|
|
20670
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
20671
|
+
},
|
|
20672
|
+
{
|
|
20673
|
+
"kind": "Content",
|
|
20674
|
+
"text": "): "
|
|
20675
|
+
},
|
|
20676
|
+
{
|
|
20677
|
+
"kind": "Reference",
|
|
20678
|
+
"text": "QuaternionType",
|
|
20679
|
+
"canonicalReference": "@dcl/playground-assets!QuaternionType:type"
|
|
20680
|
+
},
|
|
20681
|
+
{
|
|
20682
|
+
"kind": "Content",
|
|
20683
|
+
"text": ";"
|
|
20684
|
+
}
|
|
20685
|
+
],
|
|
20686
|
+
"fileUrlPath": "../ecs/dist/runtime/helpers/tree.d.ts",
|
|
20687
|
+
"returnTypeTokenRange": {
|
|
20688
|
+
"startIndex": 5,
|
|
20689
|
+
"endIndex": 6
|
|
20690
|
+
},
|
|
20691
|
+
"releaseTag": "Public",
|
|
20692
|
+
"overloadIndex": 1,
|
|
20693
|
+
"parameters": [
|
|
20694
|
+
{
|
|
20695
|
+
"parameterName": "engine",
|
|
20696
|
+
"parameterTypeTokenRange": {
|
|
20697
|
+
"startIndex": 1,
|
|
20698
|
+
"endIndex": 2
|
|
20699
|
+
},
|
|
20700
|
+
"isOptional": false
|
|
20701
|
+
},
|
|
20702
|
+
{
|
|
20703
|
+
"parameterName": "entity",
|
|
20704
|
+
"parameterTypeTokenRange": {
|
|
20705
|
+
"startIndex": 3,
|
|
20706
|
+
"endIndex": 4
|
|
20707
|
+
},
|
|
20708
|
+
"isOptional": false
|
|
20709
|
+
}
|
|
20710
|
+
],
|
|
20711
|
+
"name": "getWorldRotation"
|
|
20712
|
+
},
|
|
20713
|
+
{
|
|
20714
|
+
"kind": "TypeAlias",
|
|
20715
|
+
"canonicalReference": "@dcl/playground-assets!GlobalDirectionRaycastOptions:type",
|
|
20716
|
+
"docComment": "",
|
|
20717
|
+
"excerptTokens": [
|
|
20718
|
+
{
|
|
20719
|
+
"kind": "Content",
|
|
20720
|
+
"text": "export type GlobalDirectionRaycastOptions = "
|
|
20721
|
+
},
|
|
20722
|
+
{
|
|
20723
|
+
"kind": "Reference",
|
|
20724
|
+
"text": "RaycastSystemOptions",
|
|
20725
|
+
"canonicalReference": "@dcl/playground-assets!RaycastSystemOptions:type"
|
|
20726
|
+
},
|
|
20727
|
+
{
|
|
20728
|
+
"kind": "Content",
|
|
20729
|
+
"text": " & "
|
|
20730
|
+
},
|
|
20731
|
+
{
|
|
20732
|
+
"kind": "Reference",
|
|
20733
|
+
"text": "GlobalDirectionRaycastSystemOptions",
|
|
20734
|
+
"canonicalReference": "@dcl/playground-assets!GlobalDirectionRaycastSystemOptions:type"
|
|
20735
|
+
},
|
|
20736
|
+
{
|
|
20737
|
+
"kind": "Content",
|
|
20738
|
+
"text": ";"
|
|
20739
|
+
}
|
|
20740
|
+
],
|
|
20741
|
+
"fileUrlPath": "../ecs/dist/systems/raycast.d.ts",
|
|
20742
|
+
"releaseTag": "Public",
|
|
20743
|
+
"name": "GlobalDirectionRaycastOptions",
|
|
20744
|
+
"typeTokenRange": {
|
|
20745
|
+
"startIndex": 1,
|
|
20746
|
+
"endIndex": 4
|
|
20747
|
+
}
|
|
20748
|
+
},
|
|
20749
|
+
{
|
|
20750
|
+
"kind": "TypeAlias",
|
|
20751
|
+
"canonicalReference": "@dcl/playground-assets!GlobalDirectionRaycastSystemOptions:type",
|
|
20752
|
+
"docComment": "",
|
|
20753
|
+
"excerptTokens": [
|
|
20754
|
+
{
|
|
20755
|
+
"kind": "Content",
|
|
20756
|
+
"text": "export type GlobalDirectionRaycastSystemOptions = "
|
|
20757
|
+
},
|
|
20758
|
+
{
|
|
20759
|
+
"kind": "Content",
|
|
20760
|
+
"text": "{\n direction?: "
|
|
20761
|
+
},
|
|
20762
|
+
{
|
|
20763
|
+
"kind": "Reference",
|
|
20764
|
+
"text": "Vector3",
|
|
20765
|
+
"canonicalReference": "@dcl/playground-assets!Vector3"
|
|
20766
|
+
},
|
|
20767
|
+
{
|
|
20768
|
+
"kind": "Content",
|
|
20769
|
+
"text": ";\n}"
|
|
20770
|
+
},
|
|
20771
|
+
{
|
|
20772
|
+
"kind": "Content",
|
|
20773
|
+
"text": ";"
|
|
20774
|
+
}
|
|
20775
|
+
],
|
|
20776
|
+
"fileUrlPath": "../ecs/dist/systems/raycast.d.ts",
|
|
20777
|
+
"releaseTag": "Public",
|
|
20778
|
+
"name": "GlobalDirectionRaycastSystemOptions",
|
|
20779
|
+
"typeTokenRange": {
|
|
20780
|
+
"startIndex": 1,
|
|
20781
|
+
"endIndex": 4
|
|
20782
|
+
}
|
|
20783
|
+
},
|
|
20784
|
+
{
|
|
20785
|
+
"kind": "TypeAlias",
|
|
20786
|
+
"canonicalReference": "@dcl/playground-assets!GlobalTargetRaycastOptions:type",
|
|
20787
|
+
"docComment": "",
|
|
20788
|
+
"excerptTokens": [
|
|
20789
|
+
{
|
|
20790
|
+
"kind": "Content",
|
|
20791
|
+
"text": "export type GlobalTargetRaycastOptions = "
|
|
20792
|
+
},
|
|
20793
|
+
{
|
|
20794
|
+
"kind": "Reference",
|
|
20795
|
+
"text": "RaycastSystemOptions",
|
|
20796
|
+
"canonicalReference": "@dcl/playground-assets!RaycastSystemOptions:type"
|
|
20797
|
+
},
|
|
20798
|
+
{
|
|
20799
|
+
"kind": "Content",
|
|
20800
|
+
"text": " & "
|
|
20801
|
+
},
|
|
20802
|
+
{
|
|
20803
|
+
"kind": "Reference",
|
|
20804
|
+
"text": "GlobalTargetRaycastSystemOptions",
|
|
20805
|
+
"canonicalReference": "@dcl/playground-assets!GlobalTargetRaycastSystemOptions:type"
|
|
20806
|
+
},
|
|
20807
|
+
{
|
|
20808
|
+
"kind": "Content",
|
|
20809
|
+
"text": ";"
|
|
20810
|
+
}
|
|
20811
|
+
],
|
|
20812
|
+
"fileUrlPath": "../ecs/dist/systems/raycast.d.ts",
|
|
20813
|
+
"releaseTag": "Public",
|
|
20814
|
+
"name": "GlobalTargetRaycastOptions",
|
|
20815
|
+
"typeTokenRange": {
|
|
20816
|
+
"startIndex": 1,
|
|
20817
|
+
"endIndex": 4
|
|
20818
|
+
}
|
|
20819
|
+
},
|
|
20820
|
+
{
|
|
20821
|
+
"kind": "TypeAlias",
|
|
20822
|
+
"canonicalReference": "@dcl/playground-assets!GlobalTargetRaycastSystemOptions:type",
|
|
20823
|
+
"docComment": "",
|
|
20824
|
+
"excerptTokens": [
|
|
20825
|
+
{
|
|
20826
|
+
"kind": "Content",
|
|
20827
|
+
"text": "export type GlobalTargetRaycastSystemOptions = "
|
|
20828
|
+
},
|
|
20829
|
+
{
|
|
20830
|
+
"kind": "Content",
|
|
20831
|
+
"text": "{\n target?: "
|
|
20832
|
+
},
|
|
20833
|
+
{
|
|
20834
|
+
"kind": "Reference",
|
|
20835
|
+
"text": "Vector3",
|
|
20836
|
+
"canonicalReference": "@dcl/playground-assets!Vector3"
|
|
20837
|
+
},
|
|
20838
|
+
{
|
|
20839
|
+
"kind": "Content",
|
|
20840
|
+
"text": ";\n}"
|
|
20841
|
+
},
|
|
20842
|
+
{
|
|
20843
|
+
"kind": "Content",
|
|
20844
|
+
"text": ";"
|
|
20845
|
+
}
|
|
20846
|
+
],
|
|
20847
|
+
"fileUrlPath": "../ecs/dist/systems/raycast.d.ts",
|
|
20848
|
+
"releaseTag": "Public",
|
|
20849
|
+
"name": "GlobalTargetRaycastSystemOptions",
|
|
19998
20850
|
"typeTokenRange": {
|
|
19999
20851
|
"startIndex": 1,
|
|
20000
20852
|
"endIndex": 4
|
|
@@ -25652,6 +26504,178 @@
|
|
|
25652
26504
|
"name": "MaterialComponentDefinitionExtended",
|
|
25653
26505
|
"preserveMemberOrder": false,
|
|
25654
26506
|
"members": [
|
|
26507
|
+
{
|
|
26508
|
+
"kind": "PropertySignature",
|
|
26509
|
+
"canonicalReference": "@dcl/playground-assets!MaterialComponentDefinitionExtended#getFlat:member",
|
|
26510
|
+
"docComment": "/**\n * Get a readonly flattened accessor for the material's properties. Simplifies reading material properties without navigating nested unions. Works for both PBR and Unlit materials. Throws if the entity does not have a Material component.\n *\n * @param entity - Entity with the Material component\n *\n * @returns A readonly accessor object with direct access to material properties\n */\n",
|
|
26511
|
+
"excerptTokens": [
|
|
26512
|
+
{
|
|
26513
|
+
"kind": "Content",
|
|
26514
|
+
"text": "getFlat: "
|
|
26515
|
+
},
|
|
26516
|
+
{
|
|
26517
|
+
"kind": "Content",
|
|
26518
|
+
"text": "(entity: "
|
|
26519
|
+
},
|
|
26520
|
+
{
|
|
26521
|
+
"kind": "Reference",
|
|
26522
|
+
"text": "Entity",
|
|
26523
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
26524
|
+
},
|
|
26525
|
+
{
|
|
26526
|
+
"kind": "Content",
|
|
26527
|
+
"text": ") => "
|
|
26528
|
+
},
|
|
26529
|
+
{
|
|
26530
|
+
"kind": "Reference",
|
|
26531
|
+
"text": "ReadonlyFlatMaterial",
|
|
26532
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial:interface"
|
|
26533
|
+
},
|
|
26534
|
+
{
|
|
26535
|
+
"kind": "Content",
|
|
26536
|
+
"text": ";"
|
|
26537
|
+
}
|
|
26538
|
+
],
|
|
26539
|
+
"isReadonly": false,
|
|
26540
|
+
"isOptional": false,
|
|
26541
|
+
"releaseTag": "Public",
|
|
26542
|
+
"name": "getFlat",
|
|
26543
|
+
"propertyTypeTokenRange": {
|
|
26544
|
+
"startIndex": 1,
|
|
26545
|
+
"endIndex": 5
|
|
26546
|
+
}
|
|
26547
|
+
},
|
|
26548
|
+
{
|
|
26549
|
+
"kind": "PropertySignature",
|
|
26550
|
+
"canonicalReference": "@dcl/playground-assets!MaterialComponentDefinitionExtended#getFlatMutable:member",
|
|
26551
|
+
"docComment": "/**\n * Get a mutable flattened accessor for the material's properties. Simplifies reading/writing material properties without navigating nested unions. Works for both PBR and Unlit materials. Throws if the entity does not have a Material component.\n *\n * @param entity - Entity with the Material component\n *\n * @returns A mutable accessor object with direct access to material properties\n */\n",
|
|
26552
|
+
"excerptTokens": [
|
|
26553
|
+
{
|
|
26554
|
+
"kind": "Content",
|
|
26555
|
+
"text": "getFlatMutable: "
|
|
26556
|
+
},
|
|
26557
|
+
{
|
|
26558
|
+
"kind": "Content",
|
|
26559
|
+
"text": "(entity: "
|
|
26560
|
+
},
|
|
26561
|
+
{
|
|
26562
|
+
"kind": "Reference",
|
|
26563
|
+
"text": "Entity",
|
|
26564
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
26565
|
+
},
|
|
26566
|
+
{
|
|
26567
|
+
"kind": "Content",
|
|
26568
|
+
"text": ") => "
|
|
26569
|
+
},
|
|
26570
|
+
{
|
|
26571
|
+
"kind": "Reference",
|
|
26572
|
+
"text": "FlatMaterial",
|
|
26573
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial:interface"
|
|
26574
|
+
},
|
|
26575
|
+
{
|
|
26576
|
+
"kind": "Content",
|
|
26577
|
+
"text": ";"
|
|
26578
|
+
}
|
|
26579
|
+
],
|
|
26580
|
+
"isReadonly": false,
|
|
26581
|
+
"isOptional": false,
|
|
26582
|
+
"releaseTag": "Public",
|
|
26583
|
+
"name": "getFlatMutable",
|
|
26584
|
+
"propertyTypeTokenRange": {
|
|
26585
|
+
"startIndex": 1,
|
|
26586
|
+
"endIndex": 5
|
|
26587
|
+
}
|
|
26588
|
+
},
|
|
26589
|
+
{
|
|
26590
|
+
"kind": "PropertySignature",
|
|
26591
|
+
"canonicalReference": "@dcl/playground-assets!MaterialComponentDefinitionExtended#getFlatMutableOrNull:member",
|
|
26592
|
+
"docComment": "/**\n * Get a mutable flattened accessor for the material's properties, or null if the entity does not have a Material component.\n *\n * @param entity - Entity to check for Material component\n *\n * @returns A mutable accessor object, or null if no Material component exists\n */\n",
|
|
26593
|
+
"excerptTokens": [
|
|
26594
|
+
{
|
|
26595
|
+
"kind": "Content",
|
|
26596
|
+
"text": "getFlatMutableOrNull: "
|
|
26597
|
+
},
|
|
26598
|
+
{
|
|
26599
|
+
"kind": "Content",
|
|
26600
|
+
"text": "(entity: "
|
|
26601
|
+
},
|
|
26602
|
+
{
|
|
26603
|
+
"kind": "Reference",
|
|
26604
|
+
"text": "Entity",
|
|
26605
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
26606
|
+
},
|
|
26607
|
+
{
|
|
26608
|
+
"kind": "Content",
|
|
26609
|
+
"text": ") => "
|
|
26610
|
+
},
|
|
26611
|
+
{
|
|
26612
|
+
"kind": "Reference",
|
|
26613
|
+
"text": "FlatMaterial",
|
|
26614
|
+
"canonicalReference": "@dcl/playground-assets!FlatMaterial:interface"
|
|
26615
|
+
},
|
|
26616
|
+
{
|
|
26617
|
+
"kind": "Content",
|
|
26618
|
+
"text": " | null"
|
|
26619
|
+
},
|
|
26620
|
+
{
|
|
26621
|
+
"kind": "Content",
|
|
26622
|
+
"text": ";"
|
|
26623
|
+
}
|
|
26624
|
+
],
|
|
26625
|
+
"isReadonly": false,
|
|
26626
|
+
"isOptional": false,
|
|
26627
|
+
"releaseTag": "Public",
|
|
26628
|
+
"name": "getFlatMutableOrNull",
|
|
26629
|
+
"propertyTypeTokenRange": {
|
|
26630
|
+
"startIndex": 1,
|
|
26631
|
+
"endIndex": 6
|
|
26632
|
+
}
|
|
26633
|
+
},
|
|
26634
|
+
{
|
|
26635
|
+
"kind": "PropertySignature",
|
|
26636
|
+
"canonicalReference": "@dcl/playground-assets!MaterialComponentDefinitionExtended#getFlatOrNull:member",
|
|
26637
|
+
"docComment": "/**\n * Get a readonly flattened accessor for the material's properties, or null if the entity does not have a Material component.\n *\n * @param entity - Entity to check for Material component\n *\n * @returns A readonly accessor object, or null if no Material component exists\n */\n",
|
|
26638
|
+
"excerptTokens": [
|
|
26639
|
+
{
|
|
26640
|
+
"kind": "Content",
|
|
26641
|
+
"text": "getFlatOrNull: "
|
|
26642
|
+
},
|
|
26643
|
+
{
|
|
26644
|
+
"kind": "Content",
|
|
26645
|
+
"text": "(entity: "
|
|
26646
|
+
},
|
|
26647
|
+
{
|
|
26648
|
+
"kind": "Reference",
|
|
26649
|
+
"text": "Entity",
|
|
26650
|
+
"canonicalReference": "@dcl/playground-assets!Entity:type"
|
|
26651
|
+
},
|
|
26652
|
+
{
|
|
26653
|
+
"kind": "Content",
|
|
26654
|
+
"text": ") => "
|
|
26655
|
+
},
|
|
26656
|
+
{
|
|
26657
|
+
"kind": "Reference",
|
|
26658
|
+
"text": "ReadonlyFlatMaterial",
|
|
26659
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial:interface"
|
|
26660
|
+
},
|
|
26661
|
+
{
|
|
26662
|
+
"kind": "Content",
|
|
26663
|
+
"text": " | null"
|
|
26664
|
+
},
|
|
26665
|
+
{
|
|
26666
|
+
"kind": "Content",
|
|
26667
|
+
"text": ";"
|
|
26668
|
+
}
|
|
26669
|
+
],
|
|
26670
|
+
"isReadonly": false,
|
|
26671
|
+
"isOptional": false,
|
|
26672
|
+
"releaseTag": "Public",
|
|
26673
|
+
"name": "getFlatOrNull",
|
|
26674
|
+
"propertyTypeTokenRange": {
|
|
26675
|
+
"startIndex": 1,
|
|
26676
|
+
"endIndex": 6
|
|
26677
|
+
}
|
|
26678
|
+
},
|
|
25655
26679
|
{
|
|
25656
26680
|
"kind": "PropertySignature",
|
|
25657
26681
|
"canonicalReference": "@dcl/playground-assets!MaterialComponentDefinitionExtended#setBasicMaterial:member",
|
|
@@ -67300,260 +68324,934 @@
|
|
|
67300
68324
|
"endIndex": 7
|
|
67301
68325
|
}
|
|
67302
68326
|
}
|
|
67303
|
-
]
|
|
68327
|
+
]
|
|
68328
|
+
},
|
|
68329
|
+
{
|
|
68330
|
+
"kind": "TypeAlias",
|
|
68331
|
+
"canonicalReference": "@dcl/playground-assets!ReactEcs.SetStateAction:type",
|
|
68332
|
+
"docComment": "",
|
|
68333
|
+
"excerptTokens": [
|
|
68334
|
+
{
|
|
68335
|
+
"kind": "Content",
|
|
68336
|
+
"text": "type SetStateAction<T> = "
|
|
68337
|
+
},
|
|
68338
|
+
{
|
|
68339
|
+
"kind": "Content",
|
|
68340
|
+
"text": "T | ((prevState: T) => T)"
|
|
68341
|
+
},
|
|
68342
|
+
{
|
|
68343
|
+
"kind": "Content",
|
|
68344
|
+
"text": ";"
|
|
68345
|
+
}
|
|
68346
|
+
],
|
|
68347
|
+
"releaseTag": "Public",
|
|
68348
|
+
"name": "SetStateAction",
|
|
68349
|
+
"typeParameters": [
|
|
68350
|
+
{
|
|
68351
|
+
"typeParameterName": "T",
|
|
68352
|
+
"constraintTokenRange": {
|
|
68353
|
+
"startIndex": 0,
|
|
68354
|
+
"endIndex": 0
|
|
68355
|
+
},
|
|
68356
|
+
"defaultTypeTokenRange": {
|
|
68357
|
+
"startIndex": 0,
|
|
68358
|
+
"endIndex": 0
|
|
68359
|
+
}
|
|
68360
|
+
}
|
|
68361
|
+
],
|
|
68362
|
+
"typeTokenRange": {
|
|
68363
|
+
"startIndex": 1,
|
|
68364
|
+
"endIndex": 2
|
|
68365
|
+
}
|
|
68366
|
+
},
|
|
68367
|
+
{
|
|
68368
|
+
"kind": "TypeAlias",
|
|
68369
|
+
"canonicalReference": "@dcl/playground-assets!ReactEcs.StateHook:type",
|
|
68370
|
+
"docComment": "",
|
|
68371
|
+
"excerptTokens": [
|
|
68372
|
+
{
|
|
68373
|
+
"kind": "Content",
|
|
68374
|
+
"text": "type StateHook = "
|
|
68375
|
+
},
|
|
68376
|
+
{
|
|
68377
|
+
"kind": "Content",
|
|
68378
|
+
"text": "<T>(initialState: T | (() => T)) => [T, "
|
|
68379
|
+
},
|
|
68380
|
+
{
|
|
68381
|
+
"kind": "Reference",
|
|
68382
|
+
"text": "Dispatch",
|
|
68383
|
+
"canonicalReference": "@dcl/playground-assets!ReactEcs.Dispatch:type"
|
|
68384
|
+
},
|
|
68385
|
+
{
|
|
68386
|
+
"kind": "Content",
|
|
68387
|
+
"text": "<T>]"
|
|
68388
|
+
},
|
|
68389
|
+
{
|
|
68390
|
+
"kind": "Content",
|
|
68391
|
+
"text": ";"
|
|
68392
|
+
}
|
|
68393
|
+
],
|
|
68394
|
+
"releaseTag": "Public",
|
|
68395
|
+
"name": "StateHook",
|
|
68396
|
+
"typeTokenRange": {
|
|
68397
|
+
"startIndex": 1,
|
|
68398
|
+
"endIndex": 4
|
|
68399
|
+
}
|
|
68400
|
+
},
|
|
68401
|
+
{
|
|
68402
|
+
"kind": "Variable",
|
|
68403
|
+
"canonicalReference": "@dcl/playground-assets!ReactEcs.useEffect:var",
|
|
68404
|
+
"docComment": "",
|
|
68405
|
+
"excerptTokens": [
|
|
68406
|
+
{
|
|
68407
|
+
"kind": "Content",
|
|
68408
|
+
"text": "useEffect: "
|
|
68409
|
+
},
|
|
68410
|
+
{
|
|
68411
|
+
"kind": "Reference",
|
|
68412
|
+
"text": "EffectHook",
|
|
68413
|
+
"canonicalReference": "@dcl/playground-assets!ReactEcs.EffectHook:type"
|
|
68414
|
+
}
|
|
68415
|
+
],
|
|
68416
|
+
"isReadonly": true,
|
|
68417
|
+
"releaseTag": "Public",
|
|
68418
|
+
"name": "useEffect",
|
|
68419
|
+
"variableTypeTokenRange": {
|
|
68420
|
+
"startIndex": 1,
|
|
68421
|
+
"endIndex": 2
|
|
68422
|
+
}
|
|
68423
|
+
},
|
|
68424
|
+
{
|
|
68425
|
+
"kind": "Variable",
|
|
68426
|
+
"canonicalReference": "@dcl/playground-assets!ReactEcs.useState:var",
|
|
68427
|
+
"docComment": "",
|
|
68428
|
+
"excerptTokens": [
|
|
68429
|
+
{
|
|
68430
|
+
"kind": "Content",
|
|
68431
|
+
"text": "useState: "
|
|
68432
|
+
},
|
|
68433
|
+
{
|
|
68434
|
+
"kind": "Reference",
|
|
68435
|
+
"text": "StateHook",
|
|
68436
|
+
"canonicalReference": "@dcl/playground-assets!ReactEcs.StateHook:type"
|
|
68437
|
+
}
|
|
68438
|
+
],
|
|
68439
|
+
"isReadonly": true,
|
|
68440
|
+
"releaseTag": "Public",
|
|
68441
|
+
"name": "useState",
|
|
68442
|
+
"variableTypeTokenRange": {
|
|
68443
|
+
"startIndex": 1,
|
|
68444
|
+
"endIndex": 2
|
|
68445
|
+
}
|
|
68446
|
+
}
|
|
68447
|
+
]
|
|
68448
|
+
},
|
|
68449
|
+
{
|
|
68450
|
+
"kind": "Variable",
|
|
68451
|
+
"canonicalReference": "@dcl/playground-assets!ReactEcsRenderer:var",
|
|
68452
|
+
"docComment": "/**\n * ReactEcs variable provides the function to render & destroy the specified UI\n *\n * @example\n *\n * import { ReactEcsRenderer } from '@dcl/sdk/react-ecs' ReactEcsRenderer.setUiRenderer(uiComponent)\n *\n * @public\n */\n",
|
|
68453
|
+
"excerptTokens": [
|
|
68454
|
+
{
|
|
68455
|
+
"kind": "Content",
|
|
68456
|
+
"text": "ReactEcsRenderer: "
|
|
68457
|
+
},
|
|
68458
|
+
{
|
|
68459
|
+
"kind": "Reference",
|
|
68460
|
+
"text": "ReactBasedUiSystem",
|
|
68461
|
+
"canonicalReference": "@dcl/playground-assets!ReactBasedUiSystem:interface"
|
|
68462
|
+
}
|
|
68463
|
+
],
|
|
68464
|
+
"fileUrlPath": "../react-ecs/dist/index.d.ts",
|
|
68465
|
+
"isReadonly": true,
|
|
68466
|
+
"releaseTag": "Public",
|
|
68467
|
+
"name": "ReactEcsRenderer",
|
|
68468
|
+
"variableTypeTokenRange": {
|
|
68469
|
+
"startIndex": 1,
|
|
68470
|
+
"endIndex": 2
|
|
68471
|
+
}
|
|
68472
|
+
},
|
|
68473
|
+
{
|
|
68474
|
+
"kind": "Interface",
|
|
68475
|
+
"canonicalReference": "@dcl/playground-assets!ReactElement:interface",
|
|
68476
|
+
"docComment": "/**\n * @public\n */\n",
|
|
68477
|
+
"excerptTokens": [
|
|
68478
|
+
{
|
|
68479
|
+
"kind": "Content",
|
|
68480
|
+
"text": "export interface ReactElement<P = "
|
|
68481
|
+
},
|
|
68482
|
+
{
|
|
68483
|
+
"kind": "Content",
|
|
68484
|
+
"text": "any"
|
|
68485
|
+
},
|
|
68486
|
+
{
|
|
68487
|
+
"kind": "Content",
|
|
68488
|
+
"text": ", T extends "
|
|
68489
|
+
},
|
|
68490
|
+
{
|
|
68491
|
+
"kind": "Content",
|
|
68492
|
+
"text": "string | "
|
|
68493
|
+
},
|
|
68494
|
+
{
|
|
68495
|
+
"kind": "Reference",
|
|
68496
|
+
"text": "JSXElementConstructor",
|
|
68497
|
+
"canonicalReference": "@dcl/playground-assets!JSXElementConstructor:type"
|
|
68498
|
+
},
|
|
68499
|
+
{
|
|
68500
|
+
"kind": "Content",
|
|
68501
|
+
"text": "<any>"
|
|
68502
|
+
},
|
|
68503
|
+
{
|
|
68504
|
+
"kind": "Content",
|
|
68505
|
+
"text": " = "
|
|
68506
|
+
},
|
|
68507
|
+
{
|
|
68508
|
+
"kind": "Content",
|
|
68509
|
+
"text": "string | "
|
|
68510
|
+
},
|
|
68511
|
+
{
|
|
68512
|
+
"kind": "Reference",
|
|
68513
|
+
"text": "JSXElementConstructor",
|
|
68514
|
+
"canonicalReference": "@dcl/playground-assets!JSXElementConstructor:type"
|
|
68515
|
+
},
|
|
68516
|
+
{
|
|
68517
|
+
"kind": "Content",
|
|
68518
|
+
"text": "<any>"
|
|
68519
|
+
},
|
|
68520
|
+
{
|
|
68521
|
+
"kind": "Content",
|
|
68522
|
+
"text": "> "
|
|
68523
|
+
}
|
|
68524
|
+
],
|
|
68525
|
+
"fileUrlPath": "../react-ecs/dist/react-ecs.d.ts",
|
|
68526
|
+
"releaseTag": "Public",
|
|
68527
|
+
"typeParameters": [
|
|
68528
|
+
{
|
|
68529
|
+
"typeParameterName": "P",
|
|
68530
|
+
"constraintTokenRange": {
|
|
68531
|
+
"startIndex": 0,
|
|
68532
|
+
"endIndex": 0
|
|
68533
|
+
},
|
|
68534
|
+
"defaultTypeTokenRange": {
|
|
68535
|
+
"startIndex": 1,
|
|
68536
|
+
"endIndex": 2
|
|
68537
|
+
}
|
|
68538
|
+
},
|
|
68539
|
+
{
|
|
68540
|
+
"typeParameterName": "T",
|
|
68541
|
+
"constraintTokenRange": {
|
|
68542
|
+
"startIndex": 3,
|
|
68543
|
+
"endIndex": 6
|
|
68544
|
+
},
|
|
68545
|
+
"defaultTypeTokenRange": {
|
|
68546
|
+
"startIndex": 7,
|
|
68547
|
+
"endIndex": 10
|
|
68548
|
+
}
|
|
68549
|
+
}
|
|
68550
|
+
],
|
|
68551
|
+
"name": "ReactElement",
|
|
68552
|
+
"preserveMemberOrder": false,
|
|
68553
|
+
"members": [
|
|
68554
|
+
{
|
|
68555
|
+
"kind": "PropertySignature",
|
|
68556
|
+
"canonicalReference": "@dcl/playground-assets!ReactElement#key:member",
|
|
68557
|
+
"docComment": "",
|
|
68558
|
+
"excerptTokens": [
|
|
68559
|
+
{
|
|
68560
|
+
"kind": "Content",
|
|
68561
|
+
"text": "key: "
|
|
68562
|
+
},
|
|
68563
|
+
{
|
|
68564
|
+
"kind": "Reference",
|
|
68565
|
+
"text": "Key",
|
|
68566
|
+
"canonicalReference": "@dcl/playground-assets!Key:type"
|
|
68567
|
+
},
|
|
68568
|
+
{
|
|
68569
|
+
"kind": "Content",
|
|
68570
|
+
"text": " | null"
|
|
68571
|
+
},
|
|
68572
|
+
{
|
|
68573
|
+
"kind": "Content",
|
|
68574
|
+
"text": ";"
|
|
68575
|
+
}
|
|
68576
|
+
],
|
|
68577
|
+
"isReadonly": false,
|
|
68578
|
+
"isOptional": false,
|
|
68579
|
+
"releaseTag": "Public",
|
|
68580
|
+
"name": "key",
|
|
68581
|
+
"propertyTypeTokenRange": {
|
|
68582
|
+
"startIndex": 1,
|
|
68583
|
+
"endIndex": 3
|
|
68584
|
+
}
|
|
68585
|
+
},
|
|
68586
|
+
{
|
|
68587
|
+
"kind": "PropertySignature",
|
|
68588
|
+
"canonicalReference": "@dcl/playground-assets!ReactElement#props:member",
|
|
68589
|
+
"docComment": "",
|
|
68590
|
+
"excerptTokens": [
|
|
68591
|
+
{
|
|
68592
|
+
"kind": "Content",
|
|
68593
|
+
"text": "props: "
|
|
68594
|
+
},
|
|
68595
|
+
{
|
|
68596
|
+
"kind": "Content",
|
|
68597
|
+
"text": "P"
|
|
68598
|
+
},
|
|
68599
|
+
{
|
|
68600
|
+
"kind": "Content",
|
|
68601
|
+
"text": ";"
|
|
68602
|
+
}
|
|
68603
|
+
],
|
|
68604
|
+
"isReadonly": false,
|
|
68605
|
+
"isOptional": false,
|
|
68606
|
+
"releaseTag": "Public",
|
|
68607
|
+
"name": "props",
|
|
68608
|
+
"propertyTypeTokenRange": {
|
|
68609
|
+
"startIndex": 1,
|
|
68610
|
+
"endIndex": 2
|
|
68611
|
+
}
|
|
68612
|
+
},
|
|
68613
|
+
{
|
|
68614
|
+
"kind": "PropertySignature",
|
|
68615
|
+
"canonicalReference": "@dcl/playground-assets!ReactElement#type:member",
|
|
68616
|
+
"docComment": "",
|
|
68617
|
+
"excerptTokens": [
|
|
68618
|
+
{
|
|
68619
|
+
"kind": "Content",
|
|
68620
|
+
"text": "type: "
|
|
68621
|
+
},
|
|
68622
|
+
{
|
|
68623
|
+
"kind": "Content",
|
|
68624
|
+
"text": "T"
|
|
68625
|
+
},
|
|
68626
|
+
{
|
|
68627
|
+
"kind": "Content",
|
|
68628
|
+
"text": ";"
|
|
68629
|
+
}
|
|
68630
|
+
],
|
|
68631
|
+
"isReadonly": false,
|
|
68632
|
+
"isOptional": false,
|
|
68633
|
+
"releaseTag": "Public",
|
|
68634
|
+
"name": "type",
|
|
68635
|
+
"propertyTypeTokenRange": {
|
|
68636
|
+
"startIndex": 1,
|
|
68637
|
+
"endIndex": 2
|
|
68638
|
+
}
|
|
68639
|
+
}
|
|
68640
|
+
],
|
|
68641
|
+
"extendsTokenRanges": []
|
|
68642
|
+
},
|
|
68643
|
+
{
|
|
68644
|
+
"kind": "TypeAlias",
|
|
68645
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyComponentSchema:type",
|
|
68646
|
+
"docComment": "/**\n * @public\n */\n",
|
|
68647
|
+
"excerptTokens": [
|
|
68648
|
+
{
|
|
68649
|
+
"kind": "Content",
|
|
68650
|
+
"text": "export type ReadonlyComponentSchema<T extends "
|
|
68651
|
+
},
|
|
68652
|
+
{
|
|
68653
|
+
"kind": "Content",
|
|
68654
|
+
"text": "["
|
|
68655
|
+
},
|
|
68656
|
+
{
|
|
68657
|
+
"kind": "Reference",
|
|
68658
|
+
"text": "ComponentDefinition",
|
|
68659
|
+
"canonicalReference": "@dcl/playground-assets!ComponentDefinition:type"
|
|
68660
|
+
},
|
|
68661
|
+
{
|
|
68662
|
+
"kind": "Content",
|
|
68663
|
+
"text": "<unknown>, ..."
|
|
68664
|
+
},
|
|
68665
|
+
{
|
|
68666
|
+
"kind": "Reference",
|
|
68667
|
+
"text": "ComponentDefinition",
|
|
68668
|
+
"canonicalReference": "@dcl/playground-assets!ComponentDefinition:type"
|
|
68669
|
+
},
|
|
68670
|
+
{
|
|
68671
|
+
"kind": "Content",
|
|
68672
|
+
"text": "<unknown>[]]"
|
|
68673
|
+
},
|
|
68674
|
+
{
|
|
68675
|
+
"kind": "Content",
|
|
68676
|
+
"text": "> = "
|
|
68677
|
+
},
|
|
68678
|
+
{
|
|
68679
|
+
"kind": "Content",
|
|
68680
|
+
"text": "{\n [K in keyof T]: T[K] extends "
|
|
68681
|
+
},
|
|
68682
|
+
{
|
|
68683
|
+
"kind": "Reference",
|
|
68684
|
+
"text": "ComponentDefinition",
|
|
68685
|
+
"canonicalReference": "@dcl/playground-assets!ComponentDefinition:type"
|
|
68686
|
+
},
|
|
68687
|
+
{
|
|
68688
|
+
"kind": "Content",
|
|
68689
|
+
"text": "<unknown> ? "
|
|
68690
|
+
},
|
|
68691
|
+
{
|
|
68692
|
+
"kind": "Reference",
|
|
68693
|
+
"text": "ReturnType",
|
|
68694
|
+
"canonicalReference": "!ReturnType:type"
|
|
68695
|
+
},
|
|
68696
|
+
{
|
|
68697
|
+
"kind": "Content",
|
|
68698
|
+
"text": "<T[K]['get']> : never;\n}"
|
|
68699
|
+
},
|
|
68700
|
+
{
|
|
68701
|
+
"kind": "Content",
|
|
68702
|
+
"text": ";"
|
|
68703
|
+
}
|
|
68704
|
+
],
|
|
68705
|
+
"fileUrlPath": "../ecs/dist/engine/readonly.d.ts",
|
|
68706
|
+
"releaseTag": "Public",
|
|
68707
|
+
"name": "ReadonlyComponentSchema",
|
|
68708
|
+
"typeParameters": [
|
|
68709
|
+
{
|
|
68710
|
+
"typeParameterName": "T",
|
|
68711
|
+
"constraintTokenRange": {
|
|
68712
|
+
"startIndex": 1,
|
|
68713
|
+
"endIndex": 6
|
|
68714
|
+
},
|
|
68715
|
+
"defaultTypeTokenRange": {
|
|
68716
|
+
"startIndex": 0,
|
|
68717
|
+
"endIndex": 0
|
|
68718
|
+
}
|
|
68719
|
+
}
|
|
68720
|
+
],
|
|
68721
|
+
"typeTokenRange": {
|
|
68722
|
+
"startIndex": 7,
|
|
68723
|
+
"endIndex": 12
|
|
68724
|
+
}
|
|
68725
|
+
},
|
|
68726
|
+
{
|
|
68727
|
+
"kind": "Interface",
|
|
68728
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial:interface",
|
|
68729
|
+
"docComment": "/**\n * Readonly flattened material interface for read-only property access\n *\n * @public\n */\n",
|
|
68730
|
+
"excerptTokens": [
|
|
68731
|
+
{
|
|
68732
|
+
"kind": "Content",
|
|
68733
|
+
"text": "export interface ReadonlyFlatMaterial "
|
|
68734
|
+
}
|
|
68735
|
+
],
|
|
68736
|
+
"fileUrlPath": "../ecs/dist/components/extended/Material.d.ts",
|
|
68737
|
+
"releaseTag": "Public",
|
|
68738
|
+
"name": "ReadonlyFlatMaterial",
|
|
68739
|
+
"preserveMemberOrder": false,
|
|
68740
|
+
"members": [
|
|
68741
|
+
{
|
|
68742
|
+
"kind": "PropertySignature",
|
|
68743
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#albedoColor:member",
|
|
68744
|
+
"docComment": "/**\n * Albedo/base color (PBR only). Default: white\n */\n",
|
|
68745
|
+
"excerptTokens": [
|
|
68746
|
+
{
|
|
68747
|
+
"kind": "Content",
|
|
68748
|
+
"text": "readonly albedoColor: "
|
|
68749
|
+
},
|
|
68750
|
+
{
|
|
68751
|
+
"kind": "Reference",
|
|
68752
|
+
"text": "Color4",
|
|
68753
|
+
"canonicalReference": "@dcl/playground-assets!Color4"
|
|
68754
|
+
},
|
|
68755
|
+
{
|
|
68756
|
+
"kind": "Content",
|
|
68757
|
+
"text": " | undefined"
|
|
68758
|
+
},
|
|
68759
|
+
{
|
|
68760
|
+
"kind": "Content",
|
|
68761
|
+
"text": ";"
|
|
68762
|
+
}
|
|
68763
|
+
],
|
|
68764
|
+
"isReadonly": true,
|
|
68765
|
+
"isOptional": false,
|
|
68766
|
+
"releaseTag": "Public",
|
|
68767
|
+
"name": "albedoColor",
|
|
68768
|
+
"propertyTypeTokenRange": {
|
|
68769
|
+
"startIndex": 1,
|
|
68770
|
+
"endIndex": 3
|
|
68771
|
+
}
|
|
68772
|
+
},
|
|
68773
|
+
{
|
|
68774
|
+
"kind": "PropertySignature",
|
|
68775
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#alphaTest:member",
|
|
68776
|
+
"docComment": "/**\n * Alpha test threshold (0-1). Default: 0.5\n */\n",
|
|
68777
|
+
"excerptTokens": [
|
|
68778
|
+
{
|
|
68779
|
+
"kind": "Content",
|
|
68780
|
+
"text": "readonly alphaTest: "
|
|
68781
|
+
},
|
|
68782
|
+
{
|
|
68783
|
+
"kind": "Content",
|
|
68784
|
+
"text": "number | undefined"
|
|
68785
|
+
},
|
|
68786
|
+
{
|
|
68787
|
+
"kind": "Content",
|
|
68788
|
+
"text": ";"
|
|
68789
|
+
}
|
|
68790
|
+
],
|
|
68791
|
+
"isReadonly": true,
|
|
68792
|
+
"isOptional": false,
|
|
68793
|
+
"releaseTag": "Public",
|
|
68794
|
+
"name": "alphaTest",
|
|
68795
|
+
"propertyTypeTokenRange": {
|
|
68796
|
+
"startIndex": 1,
|
|
68797
|
+
"endIndex": 2
|
|
68798
|
+
}
|
|
68799
|
+
},
|
|
68800
|
+
{
|
|
68801
|
+
"kind": "PropertySignature",
|
|
68802
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#alphaTexture:member",
|
|
68803
|
+
"docComment": "/**\n * Access to the alpha texture properties (works for both PBR and Unlit materials)\n */\n",
|
|
68804
|
+
"excerptTokens": [
|
|
68805
|
+
{
|
|
68806
|
+
"kind": "Content",
|
|
68807
|
+
"text": "readonly alphaTexture: "
|
|
68808
|
+
},
|
|
68809
|
+
{
|
|
68810
|
+
"kind": "Reference",
|
|
68811
|
+
"text": "ReadonlyFlatTexture",
|
|
68812
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatTexture:interface"
|
|
68813
|
+
},
|
|
68814
|
+
{
|
|
68815
|
+
"kind": "Content",
|
|
68816
|
+
"text": ";"
|
|
68817
|
+
}
|
|
68818
|
+
],
|
|
68819
|
+
"isReadonly": true,
|
|
68820
|
+
"isOptional": false,
|
|
68821
|
+
"releaseTag": "Public",
|
|
68822
|
+
"name": "alphaTexture",
|
|
68823
|
+
"propertyTypeTokenRange": {
|
|
68824
|
+
"startIndex": 1,
|
|
68825
|
+
"endIndex": 2
|
|
68826
|
+
}
|
|
68827
|
+
},
|
|
68828
|
+
{
|
|
68829
|
+
"kind": "PropertySignature",
|
|
68830
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#bumpTexture:member",
|
|
68831
|
+
"docComment": "/**\n * Access to the bump/normal texture properties (PBR only - returns undefined for Unlit materials)\n */\n",
|
|
68832
|
+
"excerptTokens": [
|
|
68833
|
+
{
|
|
68834
|
+
"kind": "Content",
|
|
68835
|
+
"text": "readonly bumpTexture: "
|
|
68836
|
+
},
|
|
68837
|
+
{
|
|
68838
|
+
"kind": "Reference",
|
|
68839
|
+
"text": "ReadonlyFlatTexture",
|
|
68840
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatTexture:interface"
|
|
68841
|
+
},
|
|
68842
|
+
{
|
|
68843
|
+
"kind": "Content",
|
|
68844
|
+
"text": " | undefined"
|
|
68845
|
+
},
|
|
68846
|
+
{
|
|
68847
|
+
"kind": "Content",
|
|
68848
|
+
"text": ";"
|
|
68849
|
+
}
|
|
68850
|
+
],
|
|
68851
|
+
"isReadonly": true,
|
|
68852
|
+
"isOptional": false,
|
|
68853
|
+
"releaseTag": "Public",
|
|
68854
|
+
"name": "bumpTexture",
|
|
68855
|
+
"propertyTypeTokenRange": {
|
|
68856
|
+
"startIndex": 1,
|
|
68857
|
+
"endIndex": 3
|
|
68858
|
+
}
|
|
68859
|
+
},
|
|
68860
|
+
{
|
|
68861
|
+
"kind": "PropertySignature",
|
|
68862
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#castShadows:member",
|
|
68863
|
+
"docComment": "/**\n * Whether the material casts shadows. Default: true\n */\n",
|
|
68864
|
+
"excerptTokens": [
|
|
68865
|
+
{
|
|
68866
|
+
"kind": "Content",
|
|
68867
|
+
"text": "readonly castShadows: "
|
|
68868
|
+
},
|
|
68869
|
+
{
|
|
68870
|
+
"kind": "Content",
|
|
68871
|
+
"text": "boolean | undefined"
|
|
68872
|
+
},
|
|
68873
|
+
{
|
|
68874
|
+
"kind": "Content",
|
|
68875
|
+
"text": ";"
|
|
68876
|
+
}
|
|
68877
|
+
],
|
|
68878
|
+
"isReadonly": true,
|
|
68879
|
+
"isOptional": false,
|
|
68880
|
+
"releaseTag": "Public",
|
|
68881
|
+
"name": "castShadows",
|
|
68882
|
+
"propertyTypeTokenRange": {
|
|
68883
|
+
"startIndex": 1,
|
|
68884
|
+
"endIndex": 2
|
|
68885
|
+
}
|
|
68886
|
+
},
|
|
68887
|
+
{
|
|
68888
|
+
"kind": "PropertySignature",
|
|
68889
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#diffuseColor:member",
|
|
68890
|
+
"docComment": "/**\n * Diffuse color (Unlit only). Default: white\n */\n",
|
|
68891
|
+
"excerptTokens": [
|
|
68892
|
+
{
|
|
68893
|
+
"kind": "Content",
|
|
68894
|
+
"text": "readonly diffuseColor: "
|
|
68895
|
+
},
|
|
68896
|
+
{
|
|
68897
|
+
"kind": "Reference",
|
|
68898
|
+
"text": "Color4",
|
|
68899
|
+
"canonicalReference": "@dcl/playground-assets!Color4"
|
|
68900
|
+
},
|
|
68901
|
+
{
|
|
68902
|
+
"kind": "Content",
|
|
68903
|
+
"text": " | undefined"
|
|
68904
|
+
},
|
|
68905
|
+
{
|
|
68906
|
+
"kind": "Content",
|
|
68907
|
+
"text": ";"
|
|
68908
|
+
}
|
|
68909
|
+
],
|
|
68910
|
+
"isReadonly": true,
|
|
68911
|
+
"isOptional": false,
|
|
68912
|
+
"releaseTag": "Public",
|
|
68913
|
+
"name": "diffuseColor",
|
|
68914
|
+
"propertyTypeTokenRange": {
|
|
68915
|
+
"startIndex": 1,
|
|
68916
|
+
"endIndex": 3
|
|
68917
|
+
}
|
|
68918
|
+
},
|
|
68919
|
+
{
|
|
68920
|
+
"kind": "PropertySignature",
|
|
68921
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#directIntensity:member",
|
|
68922
|
+
"docComment": "/**\n * Direct light intensity (PBR only). Default: 1\n */\n",
|
|
68923
|
+
"excerptTokens": [
|
|
68924
|
+
{
|
|
68925
|
+
"kind": "Content",
|
|
68926
|
+
"text": "readonly directIntensity: "
|
|
68927
|
+
},
|
|
68928
|
+
{
|
|
68929
|
+
"kind": "Content",
|
|
68930
|
+
"text": "number | undefined"
|
|
68931
|
+
},
|
|
68932
|
+
{
|
|
68933
|
+
"kind": "Content",
|
|
68934
|
+
"text": ";"
|
|
68935
|
+
}
|
|
68936
|
+
],
|
|
68937
|
+
"isReadonly": true,
|
|
68938
|
+
"isOptional": false,
|
|
68939
|
+
"releaseTag": "Public",
|
|
68940
|
+
"name": "directIntensity",
|
|
68941
|
+
"propertyTypeTokenRange": {
|
|
68942
|
+
"startIndex": 1,
|
|
68943
|
+
"endIndex": 2
|
|
68944
|
+
}
|
|
68945
|
+
},
|
|
68946
|
+
{
|
|
68947
|
+
"kind": "PropertySignature",
|
|
68948
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#emissiveColor:member",
|
|
68949
|
+
"docComment": "/**\n * Emissive color (PBR only). Default: black\n */\n",
|
|
68950
|
+
"excerptTokens": [
|
|
68951
|
+
{
|
|
68952
|
+
"kind": "Content",
|
|
68953
|
+
"text": "readonly emissiveColor: "
|
|
68954
|
+
},
|
|
68955
|
+
{
|
|
68956
|
+
"kind": "Reference",
|
|
68957
|
+
"text": "Color3",
|
|
68958
|
+
"canonicalReference": "@dcl/playground-assets!Color3"
|
|
68959
|
+
},
|
|
68960
|
+
{
|
|
68961
|
+
"kind": "Content",
|
|
68962
|
+
"text": " | undefined"
|
|
68963
|
+
},
|
|
68964
|
+
{
|
|
68965
|
+
"kind": "Content",
|
|
68966
|
+
"text": ";"
|
|
68967
|
+
}
|
|
68968
|
+
],
|
|
68969
|
+
"isReadonly": true,
|
|
68970
|
+
"isOptional": false,
|
|
68971
|
+
"releaseTag": "Public",
|
|
68972
|
+
"name": "emissiveColor",
|
|
68973
|
+
"propertyTypeTokenRange": {
|
|
68974
|
+
"startIndex": 1,
|
|
68975
|
+
"endIndex": 3
|
|
68976
|
+
}
|
|
68977
|
+
},
|
|
68978
|
+
{
|
|
68979
|
+
"kind": "PropertySignature",
|
|
68980
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#emissiveIntensity:member",
|
|
68981
|
+
"docComment": "/**\n * Emissive intensity (PBR only). Default: 2\n */\n",
|
|
68982
|
+
"excerptTokens": [
|
|
68983
|
+
{
|
|
68984
|
+
"kind": "Content",
|
|
68985
|
+
"text": "readonly emissiveIntensity: "
|
|
68986
|
+
},
|
|
68987
|
+
{
|
|
68988
|
+
"kind": "Content",
|
|
68989
|
+
"text": "number | undefined"
|
|
68990
|
+
},
|
|
68991
|
+
{
|
|
68992
|
+
"kind": "Content",
|
|
68993
|
+
"text": ";"
|
|
68994
|
+
}
|
|
68995
|
+
],
|
|
68996
|
+
"isReadonly": true,
|
|
68997
|
+
"isOptional": false,
|
|
68998
|
+
"releaseTag": "Public",
|
|
68999
|
+
"name": "emissiveIntensity",
|
|
69000
|
+
"propertyTypeTokenRange": {
|
|
69001
|
+
"startIndex": 1,
|
|
69002
|
+
"endIndex": 2
|
|
69003
|
+
}
|
|
69004
|
+
},
|
|
69005
|
+
{
|
|
69006
|
+
"kind": "PropertySignature",
|
|
69007
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#emissiveTexture:member",
|
|
69008
|
+
"docComment": "/**\n * Access to the emissive texture properties (PBR only - returns undefined for Unlit materials)\n */\n",
|
|
69009
|
+
"excerptTokens": [
|
|
69010
|
+
{
|
|
69011
|
+
"kind": "Content",
|
|
69012
|
+
"text": "readonly emissiveTexture: "
|
|
69013
|
+
},
|
|
69014
|
+
{
|
|
69015
|
+
"kind": "Reference",
|
|
69016
|
+
"text": "ReadonlyFlatTexture",
|
|
69017
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatTexture:interface"
|
|
69018
|
+
},
|
|
69019
|
+
{
|
|
69020
|
+
"kind": "Content",
|
|
69021
|
+
"text": " | undefined"
|
|
69022
|
+
},
|
|
69023
|
+
{
|
|
69024
|
+
"kind": "Content",
|
|
69025
|
+
"text": ";"
|
|
69026
|
+
}
|
|
69027
|
+
],
|
|
69028
|
+
"isReadonly": true,
|
|
69029
|
+
"isOptional": false,
|
|
69030
|
+
"releaseTag": "Public",
|
|
69031
|
+
"name": "emissiveTexture",
|
|
69032
|
+
"propertyTypeTokenRange": {
|
|
69033
|
+
"startIndex": 1,
|
|
69034
|
+
"endIndex": 3
|
|
69035
|
+
}
|
|
67304
69036
|
},
|
|
67305
69037
|
{
|
|
67306
|
-
"kind": "
|
|
67307
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
67308
|
-
"docComment": "",
|
|
69038
|
+
"kind": "PropertySignature",
|
|
69039
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#metallic:member",
|
|
69040
|
+
"docComment": "/**\n * Metallic value 0-1 (PBR only). Default: 0.5\n */\n",
|
|
67309
69041
|
"excerptTokens": [
|
|
67310
69042
|
{
|
|
67311
69043
|
"kind": "Content",
|
|
67312
|
-
"text": "
|
|
69044
|
+
"text": "readonly metallic: "
|
|
67313
69045
|
},
|
|
67314
69046
|
{
|
|
67315
69047
|
"kind": "Content",
|
|
67316
|
-
"text": "
|
|
69048
|
+
"text": "number | undefined"
|
|
67317
69049
|
},
|
|
67318
69050
|
{
|
|
67319
69051
|
"kind": "Content",
|
|
67320
69052
|
"text": ";"
|
|
67321
69053
|
}
|
|
67322
69054
|
],
|
|
69055
|
+
"isReadonly": true,
|
|
69056
|
+
"isOptional": false,
|
|
67323
69057
|
"releaseTag": "Public",
|
|
67324
|
-
"name": "
|
|
67325
|
-
"
|
|
67326
|
-
{
|
|
67327
|
-
"typeParameterName": "T",
|
|
67328
|
-
"constraintTokenRange": {
|
|
67329
|
-
"startIndex": 0,
|
|
67330
|
-
"endIndex": 0
|
|
67331
|
-
},
|
|
67332
|
-
"defaultTypeTokenRange": {
|
|
67333
|
-
"startIndex": 0,
|
|
67334
|
-
"endIndex": 0
|
|
67335
|
-
}
|
|
67336
|
-
}
|
|
67337
|
-
],
|
|
67338
|
-
"typeTokenRange": {
|
|
69058
|
+
"name": "metallic",
|
|
69059
|
+
"propertyTypeTokenRange": {
|
|
67339
69060
|
"startIndex": 1,
|
|
67340
69061
|
"endIndex": 2
|
|
67341
69062
|
}
|
|
67342
69063
|
},
|
|
67343
69064
|
{
|
|
67344
|
-
"kind": "
|
|
67345
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
67346
|
-
"docComment": "",
|
|
69065
|
+
"kind": "PropertySignature",
|
|
69066
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#reflectivityColor:member",
|
|
69067
|
+
"docComment": "/**\n * Reflectivity color (PBR only). Default: white\n */\n",
|
|
67347
69068
|
"excerptTokens": [
|
|
67348
69069
|
{
|
|
67349
69070
|
"kind": "Content",
|
|
67350
|
-
"text": "
|
|
69071
|
+
"text": "readonly reflectivityColor: "
|
|
69072
|
+
},
|
|
69073
|
+
{
|
|
69074
|
+
"kind": "Reference",
|
|
69075
|
+
"text": "Color3",
|
|
69076
|
+
"canonicalReference": "@dcl/playground-assets!Color3"
|
|
67351
69077
|
},
|
|
67352
69078
|
{
|
|
67353
69079
|
"kind": "Content",
|
|
67354
|
-
"text": "
|
|
69080
|
+
"text": " | undefined"
|
|
67355
69081
|
},
|
|
67356
69082
|
{
|
|
67357
|
-
"kind": "
|
|
67358
|
-
"text": "
|
|
67359
|
-
|
|
69083
|
+
"kind": "Content",
|
|
69084
|
+
"text": ";"
|
|
69085
|
+
}
|
|
69086
|
+
],
|
|
69087
|
+
"isReadonly": true,
|
|
69088
|
+
"isOptional": false,
|
|
69089
|
+
"releaseTag": "Public",
|
|
69090
|
+
"name": "reflectivityColor",
|
|
69091
|
+
"propertyTypeTokenRange": {
|
|
69092
|
+
"startIndex": 1,
|
|
69093
|
+
"endIndex": 3
|
|
69094
|
+
}
|
|
69095
|
+
},
|
|
69096
|
+
{
|
|
69097
|
+
"kind": "PropertySignature",
|
|
69098
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#roughness:member",
|
|
69099
|
+
"docComment": "/**\n * Roughness value 0-1 (PBR only). Default: 0.5\n */\n",
|
|
69100
|
+
"excerptTokens": [
|
|
69101
|
+
{
|
|
69102
|
+
"kind": "Content",
|
|
69103
|
+
"text": "readonly roughness: "
|
|
67360
69104
|
},
|
|
67361
69105
|
{
|
|
67362
69106
|
"kind": "Content",
|
|
67363
|
-
"text": "
|
|
69107
|
+
"text": "number | undefined"
|
|
67364
69108
|
},
|
|
67365
69109
|
{
|
|
67366
69110
|
"kind": "Content",
|
|
67367
69111
|
"text": ";"
|
|
67368
69112
|
}
|
|
67369
69113
|
],
|
|
69114
|
+
"isReadonly": true,
|
|
69115
|
+
"isOptional": false,
|
|
67370
69116
|
"releaseTag": "Public",
|
|
67371
|
-
"name": "
|
|
67372
|
-
"
|
|
69117
|
+
"name": "roughness",
|
|
69118
|
+
"propertyTypeTokenRange": {
|
|
67373
69119
|
"startIndex": 1,
|
|
67374
|
-
"endIndex":
|
|
69120
|
+
"endIndex": 2
|
|
67375
69121
|
}
|
|
67376
69122
|
},
|
|
67377
69123
|
{
|
|
67378
|
-
"kind": "
|
|
67379
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
67380
|
-
"docComment": "",
|
|
69124
|
+
"kind": "PropertySignature",
|
|
69125
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#specularIntensity:member",
|
|
69126
|
+
"docComment": "/**\n * Specular intensity (PBR only). Default: 1\n */\n",
|
|
67381
69127
|
"excerptTokens": [
|
|
67382
69128
|
{
|
|
67383
69129
|
"kind": "Content",
|
|
67384
|
-
"text": "
|
|
69130
|
+
"text": "readonly specularIntensity: "
|
|
67385
69131
|
},
|
|
67386
69132
|
{
|
|
67387
|
-
"kind": "
|
|
67388
|
-
"text": "
|
|
67389
|
-
|
|
69133
|
+
"kind": "Content",
|
|
69134
|
+
"text": "number | undefined"
|
|
69135
|
+
},
|
|
69136
|
+
{
|
|
69137
|
+
"kind": "Content",
|
|
69138
|
+
"text": ";"
|
|
67390
69139
|
}
|
|
67391
69140
|
],
|
|
67392
69141
|
"isReadonly": true,
|
|
69142
|
+
"isOptional": false,
|
|
67393
69143
|
"releaseTag": "Public",
|
|
67394
|
-
"name": "
|
|
67395
|
-
"
|
|
69144
|
+
"name": "specularIntensity",
|
|
69145
|
+
"propertyTypeTokenRange": {
|
|
67396
69146
|
"startIndex": 1,
|
|
67397
69147
|
"endIndex": 2
|
|
67398
69148
|
}
|
|
67399
69149
|
},
|
|
67400
69150
|
{
|
|
67401
|
-
"kind": "
|
|
67402
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
67403
|
-
"docComment": "",
|
|
69151
|
+
"kind": "PropertySignature",
|
|
69152
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#texture:member",
|
|
69153
|
+
"docComment": "/**\n * Access to the main texture properties (works for both PBR and Unlit materials)\n */\n",
|
|
67404
69154
|
"excerptTokens": [
|
|
67405
69155
|
{
|
|
67406
69156
|
"kind": "Content",
|
|
67407
|
-
"text": "
|
|
69157
|
+
"text": "readonly texture: "
|
|
67408
69158
|
},
|
|
67409
69159
|
{
|
|
67410
69160
|
"kind": "Reference",
|
|
67411
|
-
"text": "
|
|
67412
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
69161
|
+
"text": "ReadonlyFlatTexture",
|
|
69162
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatTexture:interface"
|
|
69163
|
+
},
|
|
69164
|
+
{
|
|
69165
|
+
"kind": "Content",
|
|
69166
|
+
"text": ";"
|
|
67413
69167
|
}
|
|
67414
69168
|
],
|
|
67415
69169
|
"isReadonly": true,
|
|
69170
|
+
"isOptional": false,
|
|
67416
69171
|
"releaseTag": "Public",
|
|
67417
|
-
"name": "
|
|
67418
|
-
"
|
|
69172
|
+
"name": "texture",
|
|
69173
|
+
"propertyTypeTokenRange": {
|
|
67419
69174
|
"startIndex": 1,
|
|
67420
69175
|
"endIndex": 2
|
|
67421
69176
|
}
|
|
67422
|
-
}
|
|
67423
|
-
]
|
|
67424
|
-
},
|
|
67425
|
-
{
|
|
67426
|
-
"kind": "Variable",
|
|
67427
|
-
"canonicalReference": "@dcl/playground-assets!ReactEcsRenderer:var",
|
|
67428
|
-
"docComment": "/**\n * ReactEcs variable provides the function to render & destroy the specified UI\n *\n * @example\n *\n * import { ReactEcsRenderer } from '@dcl/sdk/react-ecs' ReactEcsRenderer.setUiRenderer(uiComponent)\n *\n * @public\n */\n",
|
|
67429
|
-
"excerptTokens": [
|
|
67430
|
-
{
|
|
67431
|
-
"kind": "Content",
|
|
67432
|
-
"text": "ReactEcsRenderer: "
|
|
67433
69177
|
},
|
|
67434
69178
|
{
|
|
67435
|
-
"kind": "
|
|
67436
|
-
"
|
|
67437
|
-
"
|
|
69179
|
+
"kind": "PropertySignature",
|
|
69180
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatMaterial#transparencyMode:member",
|
|
69181
|
+
"docComment": "/**\n * Transparency mode (PBR only). Default: MTM_AUTO\n */\n",
|
|
69182
|
+
"excerptTokens": [
|
|
69183
|
+
{
|
|
69184
|
+
"kind": "Content",
|
|
69185
|
+
"text": "readonly transparencyMode: "
|
|
69186
|
+
},
|
|
69187
|
+
{
|
|
69188
|
+
"kind": "Reference",
|
|
69189
|
+
"text": "MaterialTransparencyMode",
|
|
69190
|
+
"canonicalReference": "@dcl/playground-assets!MaterialTransparencyMode:enum"
|
|
69191
|
+
},
|
|
69192
|
+
{
|
|
69193
|
+
"kind": "Content",
|
|
69194
|
+
"text": " | undefined"
|
|
69195
|
+
},
|
|
69196
|
+
{
|
|
69197
|
+
"kind": "Content",
|
|
69198
|
+
"text": ";"
|
|
69199
|
+
}
|
|
69200
|
+
],
|
|
69201
|
+
"isReadonly": true,
|
|
69202
|
+
"isOptional": false,
|
|
69203
|
+
"releaseTag": "Public",
|
|
69204
|
+
"name": "transparencyMode",
|
|
69205
|
+
"propertyTypeTokenRange": {
|
|
69206
|
+
"startIndex": 1,
|
|
69207
|
+
"endIndex": 3
|
|
69208
|
+
}
|
|
67438
69209
|
}
|
|
67439
69210
|
],
|
|
67440
|
-
"
|
|
67441
|
-
"isReadonly": true,
|
|
67442
|
-
"releaseTag": "Public",
|
|
67443
|
-
"name": "ReactEcsRenderer",
|
|
67444
|
-
"variableTypeTokenRange": {
|
|
67445
|
-
"startIndex": 1,
|
|
67446
|
-
"endIndex": 2
|
|
67447
|
-
}
|
|
69211
|
+
"extendsTokenRanges": []
|
|
67448
69212
|
},
|
|
67449
69213
|
{
|
|
67450
69214
|
"kind": "Interface",
|
|
67451
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
67452
|
-
"docComment": "/**\n * @public\n */\n",
|
|
69215
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatTexture:interface",
|
|
69216
|
+
"docComment": "/**\n * Readonly flattened texture interface for read-only property access\n *\n * @public\n */\n",
|
|
67453
69217
|
"excerptTokens": [
|
|
67454
69218
|
{
|
|
67455
69219
|
"kind": "Content",
|
|
67456
|
-
"text": "export interface
|
|
67457
|
-
},
|
|
67458
|
-
{
|
|
67459
|
-
"kind": "Content",
|
|
67460
|
-
"text": "any"
|
|
67461
|
-
},
|
|
67462
|
-
{
|
|
67463
|
-
"kind": "Content",
|
|
67464
|
-
"text": ", T extends "
|
|
67465
|
-
},
|
|
67466
|
-
{
|
|
67467
|
-
"kind": "Content",
|
|
67468
|
-
"text": "string | "
|
|
67469
|
-
},
|
|
67470
|
-
{
|
|
67471
|
-
"kind": "Reference",
|
|
67472
|
-
"text": "JSXElementConstructor",
|
|
67473
|
-
"canonicalReference": "@dcl/playground-assets!JSXElementConstructor:type"
|
|
67474
|
-
},
|
|
67475
|
-
{
|
|
67476
|
-
"kind": "Content",
|
|
67477
|
-
"text": "<any>"
|
|
67478
|
-
},
|
|
67479
|
-
{
|
|
67480
|
-
"kind": "Content",
|
|
67481
|
-
"text": " = "
|
|
67482
|
-
},
|
|
67483
|
-
{
|
|
67484
|
-
"kind": "Content",
|
|
67485
|
-
"text": "string | "
|
|
67486
|
-
},
|
|
67487
|
-
{
|
|
67488
|
-
"kind": "Reference",
|
|
67489
|
-
"text": "JSXElementConstructor",
|
|
67490
|
-
"canonicalReference": "@dcl/playground-assets!JSXElementConstructor:type"
|
|
67491
|
-
},
|
|
67492
|
-
{
|
|
67493
|
-
"kind": "Content",
|
|
67494
|
-
"text": "<any>"
|
|
67495
|
-
},
|
|
67496
|
-
{
|
|
67497
|
-
"kind": "Content",
|
|
67498
|
-
"text": "> "
|
|
69220
|
+
"text": "export interface ReadonlyFlatTexture "
|
|
67499
69221
|
}
|
|
67500
69222
|
],
|
|
67501
|
-
"fileUrlPath": "../
|
|
69223
|
+
"fileUrlPath": "../ecs/dist/components/extended/Material.d.ts",
|
|
67502
69224
|
"releaseTag": "Public",
|
|
67503
|
-
"
|
|
67504
|
-
{
|
|
67505
|
-
"typeParameterName": "P",
|
|
67506
|
-
"constraintTokenRange": {
|
|
67507
|
-
"startIndex": 0,
|
|
67508
|
-
"endIndex": 0
|
|
67509
|
-
},
|
|
67510
|
-
"defaultTypeTokenRange": {
|
|
67511
|
-
"startIndex": 1,
|
|
67512
|
-
"endIndex": 2
|
|
67513
|
-
}
|
|
67514
|
-
},
|
|
67515
|
-
{
|
|
67516
|
-
"typeParameterName": "T",
|
|
67517
|
-
"constraintTokenRange": {
|
|
67518
|
-
"startIndex": 3,
|
|
67519
|
-
"endIndex": 6
|
|
67520
|
-
},
|
|
67521
|
-
"defaultTypeTokenRange": {
|
|
67522
|
-
"startIndex": 7,
|
|
67523
|
-
"endIndex": 10
|
|
67524
|
-
}
|
|
67525
|
-
}
|
|
67526
|
-
],
|
|
67527
|
-
"name": "ReactElement",
|
|
69225
|
+
"name": "ReadonlyFlatTexture",
|
|
67528
69226
|
"preserveMemberOrder": false,
|
|
67529
69227
|
"members": [
|
|
67530
69228
|
{
|
|
67531
69229
|
"kind": "PropertySignature",
|
|
67532
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
67533
|
-
"docComment": "",
|
|
69230
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatTexture#filterMode:member",
|
|
69231
|
+
"docComment": "/**\n * Texture filtering mode\n */\n",
|
|
67534
69232
|
"excerptTokens": [
|
|
67535
69233
|
{
|
|
67536
69234
|
"kind": "Content",
|
|
67537
|
-
"text": "
|
|
69235
|
+
"text": "readonly filterMode: "
|
|
67538
69236
|
},
|
|
67539
69237
|
{
|
|
67540
69238
|
"kind": "Reference",
|
|
67541
|
-
"text": "
|
|
67542
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
69239
|
+
"text": "TextureFilterMode",
|
|
69240
|
+
"canonicalReference": "@dcl/playground-assets!TextureFilterMode:enum"
|
|
67543
69241
|
},
|
|
67544
69242
|
{
|
|
67545
69243
|
"kind": "Content",
|
|
67546
|
-
"text": " |
|
|
69244
|
+
"text": " | undefined"
|
|
67547
69245
|
},
|
|
67548
69246
|
{
|
|
67549
69247
|
"kind": "Content",
|
|
67550
69248
|
"text": ";"
|
|
67551
69249
|
}
|
|
67552
69250
|
],
|
|
67553
|
-
"isReadonly":
|
|
69251
|
+
"isReadonly": true,
|
|
67554
69252
|
"isOptional": false,
|
|
67555
69253
|
"releaseTag": "Public",
|
|
67556
|
-
"name": "
|
|
69254
|
+
"name": "filterMode",
|
|
67557
69255
|
"propertyTypeTokenRange": {
|
|
67558
69256
|
"startIndex": 1,
|
|
67559
69257
|
"endIndex": 3
|
|
@@ -67561,26 +69259,26 @@
|
|
|
67561
69259
|
},
|
|
67562
69260
|
{
|
|
67563
69261
|
"kind": "PropertySignature",
|
|
67564
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
67565
|
-
"docComment": "",
|
|
69262
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatTexture#src:member",
|
|
69263
|
+
"docComment": "/**\n * Path to the texture file\n */\n",
|
|
67566
69264
|
"excerptTokens": [
|
|
67567
69265
|
{
|
|
67568
69266
|
"kind": "Content",
|
|
67569
|
-
"text": "
|
|
69267
|
+
"text": "readonly src: "
|
|
67570
69268
|
},
|
|
67571
69269
|
{
|
|
67572
69270
|
"kind": "Content",
|
|
67573
|
-
"text": "
|
|
69271
|
+
"text": "string | undefined"
|
|
67574
69272
|
},
|
|
67575
69273
|
{
|
|
67576
69274
|
"kind": "Content",
|
|
67577
69275
|
"text": ";"
|
|
67578
69276
|
}
|
|
67579
69277
|
],
|
|
67580
|
-
"isReadonly":
|
|
69278
|
+
"isReadonly": true,
|
|
67581
69279
|
"isOptional": false,
|
|
67582
69280
|
"releaseTag": "Public",
|
|
67583
|
-
"name": "
|
|
69281
|
+
"name": "src",
|
|
67584
69282
|
"propertyTypeTokenRange": {
|
|
67585
69283
|
"startIndex": 1,
|
|
67586
69284
|
"endIndex": 2
|
|
@@ -67588,117 +69286,39 @@
|
|
|
67588
69286
|
},
|
|
67589
69287
|
{
|
|
67590
69288
|
"kind": "PropertySignature",
|
|
67591
|
-
"canonicalReference": "@dcl/playground-assets!
|
|
67592
|
-
"docComment": "",
|
|
69289
|
+
"canonicalReference": "@dcl/playground-assets!ReadonlyFlatTexture#wrapMode:member",
|
|
69290
|
+
"docComment": "/**\n * Texture wrapping behavior\n */\n",
|
|
67593
69291
|
"excerptTokens": [
|
|
67594
69292
|
{
|
|
67595
69293
|
"kind": "Content",
|
|
67596
|
-
"text": "
|
|
69294
|
+
"text": "readonly wrapMode: "
|
|
69295
|
+
},
|
|
69296
|
+
{
|
|
69297
|
+
"kind": "Reference",
|
|
69298
|
+
"text": "TextureWrapMode",
|
|
69299
|
+
"canonicalReference": "@dcl/playground-assets!TextureWrapMode:enum"
|
|
67597
69300
|
},
|
|
67598
69301
|
{
|
|
67599
69302
|
"kind": "Content",
|
|
67600
|
-
"text": "
|
|
69303
|
+
"text": " | undefined"
|
|
67601
69304
|
},
|
|
67602
69305
|
{
|
|
67603
69306
|
"kind": "Content",
|
|
67604
69307
|
"text": ";"
|
|
67605
69308
|
}
|
|
67606
69309
|
],
|
|
67607
|
-
"isReadonly":
|
|
69310
|
+
"isReadonly": true,
|
|
67608
69311
|
"isOptional": false,
|
|
67609
69312
|
"releaseTag": "Public",
|
|
67610
|
-
"name": "
|
|
69313
|
+
"name": "wrapMode",
|
|
67611
69314
|
"propertyTypeTokenRange": {
|
|
67612
69315
|
"startIndex": 1,
|
|
67613
|
-
"endIndex":
|
|
69316
|
+
"endIndex": 3
|
|
67614
69317
|
}
|
|
67615
69318
|
}
|
|
67616
69319
|
],
|
|
67617
69320
|
"extendsTokenRanges": []
|
|
67618
69321
|
},
|
|
67619
|
-
{
|
|
67620
|
-
"kind": "TypeAlias",
|
|
67621
|
-
"canonicalReference": "@dcl/playground-assets!ReadonlyComponentSchema:type",
|
|
67622
|
-
"docComment": "/**\n * @public\n */\n",
|
|
67623
|
-
"excerptTokens": [
|
|
67624
|
-
{
|
|
67625
|
-
"kind": "Content",
|
|
67626
|
-
"text": "export type ReadonlyComponentSchema<T extends "
|
|
67627
|
-
},
|
|
67628
|
-
{
|
|
67629
|
-
"kind": "Content",
|
|
67630
|
-
"text": "["
|
|
67631
|
-
},
|
|
67632
|
-
{
|
|
67633
|
-
"kind": "Reference",
|
|
67634
|
-
"text": "ComponentDefinition",
|
|
67635
|
-
"canonicalReference": "@dcl/playground-assets!ComponentDefinition:type"
|
|
67636
|
-
},
|
|
67637
|
-
{
|
|
67638
|
-
"kind": "Content",
|
|
67639
|
-
"text": "<unknown>, ..."
|
|
67640
|
-
},
|
|
67641
|
-
{
|
|
67642
|
-
"kind": "Reference",
|
|
67643
|
-
"text": "ComponentDefinition",
|
|
67644
|
-
"canonicalReference": "@dcl/playground-assets!ComponentDefinition:type"
|
|
67645
|
-
},
|
|
67646
|
-
{
|
|
67647
|
-
"kind": "Content",
|
|
67648
|
-
"text": "<unknown>[]]"
|
|
67649
|
-
},
|
|
67650
|
-
{
|
|
67651
|
-
"kind": "Content",
|
|
67652
|
-
"text": "> = "
|
|
67653
|
-
},
|
|
67654
|
-
{
|
|
67655
|
-
"kind": "Content",
|
|
67656
|
-
"text": "{\n [K in keyof T]: T[K] extends "
|
|
67657
|
-
},
|
|
67658
|
-
{
|
|
67659
|
-
"kind": "Reference",
|
|
67660
|
-
"text": "ComponentDefinition",
|
|
67661
|
-
"canonicalReference": "@dcl/playground-assets!ComponentDefinition:type"
|
|
67662
|
-
},
|
|
67663
|
-
{
|
|
67664
|
-
"kind": "Content",
|
|
67665
|
-
"text": "<unknown> ? "
|
|
67666
|
-
},
|
|
67667
|
-
{
|
|
67668
|
-
"kind": "Reference",
|
|
67669
|
-
"text": "ReturnType",
|
|
67670
|
-
"canonicalReference": "!ReturnType:type"
|
|
67671
|
-
},
|
|
67672
|
-
{
|
|
67673
|
-
"kind": "Content",
|
|
67674
|
-
"text": "<T[K]['get']> : never;\n}"
|
|
67675
|
-
},
|
|
67676
|
-
{
|
|
67677
|
-
"kind": "Content",
|
|
67678
|
-
"text": ";"
|
|
67679
|
-
}
|
|
67680
|
-
],
|
|
67681
|
-
"fileUrlPath": "../ecs/dist/engine/readonly.d.ts",
|
|
67682
|
-
"releaseTag": "Public",
|
|
67683
|
-
"name": "ReadonlyComponentSchema",
|
|
67684
|
-
"typeParameters": [
|
|
67685
|
-
{
|
|
67686
|
-
"typeParameterName": "T",
|
|
67687
|
-
"constraintTokenRange": {
|
|
67688
|
-
"startIndex": 1,
|
|
67689
|
-
"endIndex": 6
|
|
67690
|
-
},
|
|
67691
|
-
"defaultTypeTokenRange": {
|
|
67692
|
-
"startIndex": 0,
|
|
67693
|
-
"endIndex": 0
|
|
67694
|
-
}
|
|
67695
|
-
}
|
|
67696
|
-
],
|
|
67697
|
-
"typeTokenRange": {
|
|
67698
|
-
"startIndex": 7,
|
|
67699
|
-
"endIndex": 12
|
|
67700
|
-
}
|
|
67701
|
-
},
|
|
67702
69322
|
{
|
|
67703
69323
|
"kind": "TypeAlias",
|
|
67704
69324
|
"canonicalReference": "@dcl/playground-assets!ReadOnlyGrowOnlyValueSetComponentDefinition:type",
|
|
@@ -74127,6 +75747,162 @@
|
|
|
74127
75747
|
}
|
|
74128
75748
|
]
|
|
74129
75749
|
},
|
|
75750
|
+
{
|
|
75751
|
+
"kind": "TypeAlias",
|
|
75752
|
+
"canonicalReference": "@dcl/playground-assets!TimerCallback:type",
|
|
75753
|
+
"docComment": "",
|
|
75754
|
+
"excerptTokens": [
|
|
75755
|
+
{
|
|
75756
|
+
"kind": "Content",
|
|
75757
|
+
"text": "export type TimerCallback = "
|
|
75758
|
+
},
|
|
75759
|
+
{
|
|
75760
|
+
"kind": "Content",
|
|
75761
|
+
"text": "() => void"
|
|
75762
|
+
},
|
|
75763
|
+
{
|
|
75764
|
+
"kind": "Content",
|
|
75765
|
+
"text": ";"
|
|
75766
|
+
}
|
|
75767
|
+
],
|
|
75768
|
+
"fileUrlPath": "../ecs/dist/runtime/helpers/timers.d.ts",
|
|
75769
|
+
"releaseTag": "Public",
|
|
75770
|
+
"name": "TimerCallback",
|
|
75771
|
+
"typeTokenRange": {
|
|
75772
|
+
"startIndex": 1,
|
|
75773
|
+
"endIndex": 2
|
|
75774
|
+
}
|
|
75775
|
+
},
|
|
75776
|
+
{
|
|
75777
|
+
"kind": "TypeAlias",
|
|
75778
|
+
"canonicalReference": "@dcl/playground-assets!TimerId:type",
|
|
75779
|
+
"docComment": "",
|
|
75780
|
+
"excerptTokens": [
|
|
75781
|
+
{
|
|
75782
|
+
"kind": "Content",
|
|
75783
|
+
"text": "export type TimerId = "
|
|
75784
|
+
},
|
|
75785
|
+
{
|
|
75786
|
+
"kind": "Content",
|
|
75787
|
+
"text": "number"
|
|
75788
|
+
},
|
|
75789
|
+
{
|
|
75790
|
+
"kind": "Content",
|
|
75791
|
+
"text": ";"
|
|
75792
|
+
}
|
|
75793
|
+
],
|
|
75794
|
+
"fileUrlPath": "../ecs/dist/runtime/helpers/timers.d.ts",
|
|
75795
|
+
"releaseTag": "Public",
|
|
75796
|
+
"name": "TimerId",
|
|
75797
|
+
"typeTokenRange": {
|
|
75798
|
+
"startIndex": 1,
|
|
75799
|
+
"endIndex": 2
|
|
75800
|
+
}
|
|
75801
|
+
},
|
|
75802
|
+
{
|
|
75803
|
+
"kind": "TypeAlias",
|
|
75804
|
+
"canonicalReference": "@dcl/playground-assets!Timers:type",
|
|
75805
|
+
"docComment": "",
|
|
75806
|
+
"excerptTokens": [
|
|
75807
|
+
{
|
|
75808
|
+
"kind": "Content",
|
|
75809
|
+
"text": "export type Timers = "
|
|
75810
|
+
},
|
|
75811
|
+
{
|
|
75812
|
+
"kind": "Content",
|
|
75813
|
+
"text": "{\n setTimeout(callback: "
|
|
75814
|
+
},
|
|
75815
|
+
{
|
|
75816
|
+
"kind": "Reference",
|
|
75817
|
+
"text": "TimerCallback",
|
|
75818
|
+
"canonicalReference": "@dcl/playground-assets!TimerCallback:type"
|
|
75819
|
+
},
|
|
75820
|
+
{
|
|
75821
|
+
"kind": "Content",
|
|
75822
|
+
"text": ", ms: number): "
|
|
75823
|
+
},
|
|
75824
|
+
{
|
|
75825
|
+
"kind": "Reference",
|
|
75826
|
+
"text": "TimerId",
|
|
75827
|
+
"canonicalReference": "@dcl/playground-assets!TimerId:type"
|
|
75828
|
+
},
|
|
75829
|
+
{
|
|
75830
|
+
"kind": "Content",
|
|
75831
|
+
"text": ";\n clearTimeout(timerId: "
|
|
75832
|
+
},
|
|
75833
|
+
{
|
|
75834
|
+
"kind": "Reference",
|
|
75835
|
+
"text": "TimerId",
|
|
75836
|
+
"canonicalReference": "@dcl/playground-assets!TimerId:type"
|
|
75837
|
+
},
|
|
75838
|
+
{
|
|
75839
|
+
"kind": "Content",
|
|
75840
|
+
"text": "): void;\n setInterval(callback: "
|
|
75841
|
+
},
|
|
75842
|
+
{
|
|
75843
|
+
"kind": "Reference",
|
|
75844
|
+
"text": "TimerCallback",
|
|
75845
|
+
"canonicalReference": "@dcl/playground-assets!TimerCallback:type"
|
|
75846
|
+
},
|
|
75847
|
+
{
|
|
75848
|
+
"kind": "Content",
|
|
75849
|
+
"text": ", ms: number): "
|
|
75850
|
+
},
|
|
75851
|
+
{
|
|
75852
|
+
"kind": "Reference",
|
|
75853
|
+
"text": "TimerId",
|
|
75854
|
+
"canonicalReference": "@dcl/playground-assets!TimerId:type"
|
|
75855
|
+
},
|
|
75856
|
+
{
|
|
75857
|
+
"kind": "Content",
|
|
75858
|
+
"text": ";\n clearInterval(timerId: "
|
|
75859
|
+
},
|
|
75860
|
+
{
|
|
75861
|
+
"kind": "Reference",
|
|
75862
|
+
"text": "TimerId",
|
|
75863
|
+
"canonicalReference": "@dcl/playground-assets!TimerId:type"
|
|
75864
|
+
},
|
|
75865
|
+
{
|
|
75866
|
+
"kind": "Content",
|
|
75867
|
+
"text": "): void;\n}"
|
|
75868
|
+
},
|
|
75869
|
+
{
|
|
75870
|
+
"kind": "Content",
|
|
75871
|
+
"text": ";"
|
|
75872
|
+
}
|
|
75873
|
+
],
|
|
75874
|
+
"fileUrlPath": "../ecs/dist/runtime/helpers/timers.d.ts",
|
|
75875
|
+
"releaseTag": "Public",
|
|
75876
|
+
"name": "Timers",
|
|
75877
|
+
"typeTokenRange": {
|
|
75878
|
+
"startIndex": 1,
|
|
75879
|
+
"endIndex": 14
|
|
75880
|
+
}
|
|
75881
|
+
},
|
|
75882
|
+
{
|
|
75883
|
+
"kind": "Variable",
|
|
75884
|
+
"canonicalReference": "@dcl/playground-assets!timers:var",
|
|
75885
|
+
"docComment": "/**\n * Timer utilities for delayed and repeated execution.\n *\n * @public\n */\n",
|
|
75886
|
+
"excerptTokens": [
|
|
75887
|
+
{
|
|
75888
|
+
"kind": "Content",
|
|
75889
|
+
"text": "timers: "
|
|
75890
|
+
},
|
|
75891
|
+
{
|
|
75892
|
+
"kind": "Reference",
|
|
75893
|
+
"text": "Timers",
|
|
75894
|
+
"canonicalReference": "@dcl/playground-assets!Timers:type"
|
|
75895
|
+
}
|
|
75896
|
+
],
|
|
75897
|
+
"fileUrlPath": "../ecs/dist/runtime/initialization/index.d.ts",
|
|
75898
|
+
"isReadonly": true,
|
|
75899
|
+
"releaseTag": "Public",
|
|
75900
|
+
"name": "timers",
|
|
75901
|
+
"variableTypeTokenRange": {
|
|
75902
|
+
"startIndex": 1,
|
|
75903
|
+
"endIndex": 2
|
|
75904
|
+
}
|
|
75905
|
+
},
|
|
74130
75906
|
{
|
|
74131
75907
|
"kind": "Variable",
|
|
74132
75908
|
"canonicalReference": "@dcl/playground-assets!ToGammaSpace:var",
|
|
@@ -86023,6 +87799,46 @@
|
|
|
86023
87799
|
"endIndex": 5
|
|
86024
87800
|
}
|
|
86025
87801
|
},
|
|
87802
|
+
{
|
|
87803
|
+
"kind": "TypeAlias",
|
|
87804
|
+
"canonicalReference": "@dcl/playground-assets!WorldTransformEngine:type",
|
|
87805
|
+
"docComment": "/**\n * Engine type for world transform functions\n *\n * @public\n */\n",
|
|
87806
|
+
"excerptTokens": [
|
|
87807
|
+
{
|
|
87808
|
+
"kind": "Content",
|
|
87809
|
+
"text": "export type WorldTransformEngine = "
|
|
87810
|
+
},
|
|
87811
|
+
{
|
|
87812
|
+
"kind": "Reference",
|
|
87813
|
+
"text": "Pick",
|
|
87814
|
+
"canonicalReference": "!Pick:type"
|
|
87815
|
+
},
|
|
87816
|
+
{
|
|
87817
|
+
"kind": "Content",
|
|
87818
|
+
"text": "<"
|
|
87819
|
+
},
|
|
87820
|
+
{
|
|
87821
|
+
"kind": "Reference",
|
|
87822
|
+
"text": "IEngine",
|
|
87823
|
+
"canonicalReference": "@dcl/playground-assets!IEngine:interface"
|
|
87824
|
+
},
|
|
87825
|
+
{
|
|
87826
|
+
"kind": "Content",
|
|
87827
|
+
"text": ", 'getEntitiesWith' | 'defineComponentFromSchema' | 'PlayerEntity'>"
|
|
87828
|
+
},
|
|
87829
|
+
{
|
|
87830
|
+
"kind": "Content",
|
|
87831
|
+
"text": ";"
|
|
87832
|
+
}
|
|
87833
|
+
],
|
|
87834
|
+
"fileUrlPath": "../ecs/dist/runtime/helpers/tree.d.ts",
|
|
87835
|
+
"releaseTag": "Public",
|
|
87836
|
+
"name": "WorldTransformEngine",
|
|
87837
|
+
"typeTokenRange": {
|
|
87838
|
+
"startIndex": 1,
|
|
87839
|
+
"endIndex": 5
|
|
87840
|
+
}
|
|
87841
|
+
},
|
|
86026
87842
|
{
|
|
86027
87843
|
"kind": "Enum",
|
|
86028
87844
|
"canonicalReference": "@dcl/playground-assets!YGAlign:enum",
|