hytopia 0.7.1 → 0.7.3-dev1
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/bun-server.mjs +159 -159
- package/docs/server.array3number.md +13 -0
- package/docs/server.array4number.md +13 -0
- package/docs/server.audiomanager.getallaudios.md +37 -1
- package/docs/server.audiomanager.md +1 -1
- package/docs/server.blocktype._constructor_.md +15 -1
- package/docs/server.blocktype.blocktyperegistry.md +13 -0
- package/docs/server.blocktype.md +22 -1
- package/docs/server.blocktyperegistry.getallblocktypes.md +37 -1
- package/docs/server.blocktyperegistry.md +1 -1
- package/docs/server.chunk._constructor_.md +15 -1
- package/docs/server.chunk.chunklattice.md +13 -0
- package/docs/server.chunk.md +22 -1
- package/docs/server.chunklattice.getallchunks.md +37 -1
- package/docs/server.chunklattice.md +22 -1
- package/docs/server.chunklattice.world.md +13 -0
- package/docs/server.entitymanager.getallentities.md +37 -1
- package/docs/server.entitymanager.md +1 -1
- package/docs/server.lightmanager.getalllights.md +37 -1
- package/docs/server.lightmanager.md +1 -1
- package/docs/server.md +33 -0
- package/docs/server.particleemitter.md +120 -29
- package/docs/server.particleemitter.paused.md +13 -0
- package/docs/server.particleemitter.restart.md +1 -1
- package/docs/{server.particleemitter.setsize.md → server.particleemitter.setsizeend.md} +6 -6
- package/docs/server.particleemitter.setsizeendvariance.md +53 -0
- package/docs/{server.particleemitter.setsizevariance.md → server.particleemitter.setsizestart.md} +6 -6
- package/docs/server.particleemitter.setsizestartvariance.md +53 -0
- package/docs/server.particleemitter.sizeend.md +13 -0
- package/docs/server.particleemitter.sizeendvariance.md +13 -0
- package/docs/server.particleemitter.sizestart.md +13 -0
- package/docs/server.particleemitter.sizestartvariance.md +13 -0
- package/docs/server.particleemitter.stop.md +1 -1
- package/docs/server.particleemitterevent.md +46 -4
- package/docs/server.particleemittereventpayloads._particle_emitter.set_paused_.md +16 -0
- package/docs/server.particleemittereventpayloads._particle_emitter.set_size_end_.md +16 -0
- package/docs/server.particleemittereventpayloads._particle_emitter.set_size_end_variance_.md +16 -0
- package/docs/server.particleemittereventpayloads._particle_emitter.set_size_start_.md +16 -0
- package/docs/server.particleemittereventpayloads._particle_emitter.set_size_start_variance_.md +16 -0
- package/docs/server.particleemittereventpayloads.md +63 -6
- package/docs/server.particleemittermanager.getallparticleemitters.md +37 -1
- package/docs/server.particleemittermanager.md +1 -1
- package/docs/server.particleemitteroptions.md +42 -4
- package/docs/server.particleemitteroptions.sizeend.md +13 -0
- package/docs/server.particleemitteroptions.sizeendvariance.md +13 -0
- package/docs/server.particleemitteroptions.sizestart.md +13 -0
- package/docs/server.particleemitteroptions.sizestartvariance.md +13 -0
- package/docs/server.sceneuimanager.getallsceneuis.md +37 -1
- package/docs/server.sceneuimanager.md +1 -1
- package/docs/server.tickallocator.getarray.md +71 -0
- package/docs/server.tickallocator.getarray3number.md +55 -0
- package/docs/server.tickallocator.getarray4number.md +55 -0
- package/docs/server.tickallocator.getobject.md +71 -0
- package/docs/server.tickallocator.getset.md +71 -0
- package/docs/server.tickallocator.map.md +71 -0
- package/docs/server.tickallocator.md +148 -0
- package/docs/server.tickallocator.reset.md +17 -0
- package/docs/server.world.md +21 -0
- package/docs/server.world.tickallocator.md +13 -0
- package/node-server.mjs +163 -163
- package/package.json +1 -1
- package/server.api.json +1442 -113
- package/server.d.ts +230 -52
- package/docs/server.particleemitter.isstopped.md +0 -13
- package/docs/server.particleemitter.size.md +0 -13
- package/docs/server.particleemittereventpayloads._particle_emitter.set_size_.md +0 -16
- package/docs/server.particleemittereventpayloads._particle_emitter.set_size_variance_.md +0 -16
- package/docs/server.particleemitteroptions.size.md +0 -13
- package/docs/server.particleemitteroptions.sizevariance.md +0 -13
package/server.api.json
CHANGED
|
@@ -173,6 +173,58 @@
|
|
|
173
173
|
"name": "",
|
|
174
174
|
"preserveMemberOrder": false,
|
|
175
175
|
"members": [
|
|
176
|
+
{
|
|
177
|
+
"kind": "TypeAlias",
|
|
178
|
+
"canonicalReference": "server!Array3Number:type",
|
|
179
|
+
"docComment": "/**\n * A 3-element number array.\n *\n * @public\n */\n",
|
|
180
|
+
"excerptTokens": [
|
|
181
|
+
{
|
|
182
|
+
"kind": "Content",
|
|
183
|
+
"text": "export type Array3Number = "
|
|
184
|
+
},
|
|
185
|
+
{
|
|
186
|
+
"kind": "Content",
|
|
187
|
+
"text": "[number, number, number]"
|
|
188
|
+
},
|
|
189
|
+
{
|
|
190
|
+
"kind": "Content",
|
|
191
|
+
"text": ";"
|
|
192
|
+
}
|
|
193
|
+
],
|
|
194
|
+
"fileUrlPath": "src/shared/classes/TickAllocator.ts",
|
|
195
|
+
"releaseTag": "Public",
|
|
196
|
+
"name": "Array3Number",
|
|
197
|
+
"typeTokenRange": {
|
|
198
|
+
"startIndex": 1,
|
|
199
|
+
"endIndex": 2
|
|
200
|
+
}
|
|
201
|
+
},
|
|
202
|
+
{
|
|
203
|
+
"kind": "TypeAlias",
|
|
204
|
+
"canonicalReference": "server!Array4Number:type",
|
|
205
|
+
"docComment": "/**\n * A 4-element number array.\n *\n * @public\n */\n",
|
|
206
|
+
"excerptTokens": [
|
|
207
|
+
{
|
|
208
|
+
"kind": "Content",
|
|
209
|
+
"text": "export type Array4Number = "
|
|
210
|
+
},
|
|
211
|
+
{
|
|
212
|
+
"kind": "Content",
|
|
213
|
+
"text": "[number, number, number, number]"
|
|
214
|
+
},
|
|
215
|
+
{
|
|
216
|
+
"kind": "Content",
|
|
217
|
+
"text": ";"
|
|
218
|
+
}
|
|
219
|
+
],
|
|
220
|
+
"fileUrlPath": "src/shared/classes/TickAllocator.ts",
|
|
221
|
+
"releaseTag": "Public",
|
|
222
|
+
"name": "Array4Number",
|
|
223
|
+
"typeTokenRange": {
|
|
224
|
+
"startIndex": 1,
|
|
225
|
+
"endIndex": 2
|
|
226
|
+
}
|
|
227
|
+
},
|
|
176
228
|
{
|
|
177
229
|
"kind": "Class",
|
|
178
230
|
"canonicalReference": "server!Audio:class",
|
|
@@ -2087,11 +2139,19 @@
|
|
|
2087
2139
|
{
|
|
2088
2140
|
"kind": "Method",
|
|
2089
2141
|
"canonicalReference": "server!AudioManager#getAllAudios:member(1)",
|
|
2090
|
-
"docComment": "/**\n * Retrieves all loaded audio instances for the world.\n *\n * @returns An array of audio instances.\n */\n",
|
|
2142
|
+
"docComment": "/**\n * Retrieves all loaded audio instances for the world.\n *\n * @param tickAllocated - Whether to use the tick allocator to allocate the returned array of Audio instances. The allocated array will be collected and released at the end of the current tick if true. Only use this if you know what you're doing.\n *\n * @returns An array of audio instances.\n */\n",
|
|
2091
2143
|
"excerptTokens": [
|
|
2092
2144
|
{
|
|
2093
2145
|
"kind": "Content",
|
|
2094
|
-
"text": "getAllAudios(
|
|
2146
|
+
"text": "getAllAudios(tickAllocated?: "
|
|
2147
|
+
},
|
|
2148
|
+
{
|
|
2149
|
+
"kind": "Content",
|
|
2150
|
+
"text": "boolean"
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"kind": "Content",
|
|
2154
|
+
"text": "): "
|
|
2095
2155
|
},
|
|
2096
2156
|
{
|
|
2097
2157
|
"kind": "Reference",
|
|
@@ -2109,13 +2169,22 @@
|
|
|
2109
2169
|
],
|
|
2110
2170
|
"isStatic": false,
|
|
2111
2171
|
"returnTypeTokenRange": {
|
|
2112
|
-
"startIndex":
|
|
2113
|
-
"endIndex":
|
|
2172
|
+
"startIndex": 3,
|
|
2173
|
+
"endIndex": 5
|
|
2114
2174
|
},
|
|
2115
2175
|
"releaseTag": "Public",
|
|
2116
2176
|
"isProtected": false,
|
|
2117
2177
|
"overloadIndex": 1,
|
|
2118
|
-
"parameters": [
|
|
2178
|
+
"parameters": [
|
|
2179
|
+
{
|
|
2180
|
+
"parameterName": "tickAllocated",
|
|
2181
|
+
"parameterTypeTokenRange": {
|
|
2182
|
+
"startIndex": 1,
|
|
2183
|
+
"endIndex": 2
|
|
2184
|
+
},
|
|
2185
|
+
"isOptional": true
|
|
2186
|
+
}
|
|
2187
|
+
],
|
|
2119
2188
|
"isOptional": false,
|
|
2120
2189
|
"isAbstract": false,
|
|
2121
2190
|
"name": "getAllAudios"
|
|
@@ -4910,7 +4979,16 @@
|
|
|
4910
4979
|
"excerptTokens": [
|
|
4911
4980
|
{
|
|
4912
4981
|
"kind": "Content",
|
|
4913
|
-
"text": "constructor(
|
|
4982
|
+
"text": "constructor(blockTypeRegistry: "
|
|
4983
|
+
},
|
|
4984
|
+
{
|
|
4985
|
+
"kind": "Reference",
|
|
4986
|
+
"text": "BlockTypeRegistry",
|
|
4987
|
+
"canonicalReference": "server!BlockTypeRegistry:class"
|
|
4988
|
+
},
|
|
4989
|
+
{
|
|
4990
|
+
"kind": "Content",
|
|
4991
|
+
"text": ", options?: "
|
|
4914
4992
|
},
|
|
4915
4993
|
{
|
|
4916
4994
|
"kind": "Reference",
|
|
@@ -4927,15 +5005,54 @@
|
|
|
4927
5005
|
"overloadIndex": 1,
|
|
4928
5006
|
"parameters": [
|
|
4929
5007
|
{
|
|
4930
|
-
"parameterName": "
|
|
5008
|
+
"parameterName": "blockTypeRegistry",
|
|
4931
5009
|
"parameterTypeTokenRange": {
|
|
4932
5010
|
"startIndex": 1,
|
|
4933
5011
|
"endIndex": 2
|
|
4934
5012
|
},
|
|
5013
|
+
"isOptional": false
|
|
5014
|
+
},
|
|
5015
|
+
{
|
|
5016
|
+
"parameterName": "options",
|
|
5017
|
+
"parameterTypeTokenRange": {
|
|
5018
|
+
"startIndex": 3,
|
|
5019
|
+
"endIndex": 4
|
|
5020
|
+
},
|
|
4935
5021
|
"isOptional": true
|
|
4936
5022
|
}
|
|
4937
5023
|
]
|
|
4938
5024
|
},
|
|
5025
|
+
{
|
|
5026
|
+
"kind": "Property",
|
|
5027
|
+
"canonicalReference": "server!BlockType#blockTypeRegistry:member",
|
|
5028
|
+
"docComment": "/**\n * The block type registry that the block type belongs to.\n */\n",
|
|
5029
|
+
"excerptTokens": [
|
|
5030
|
+
{
|
|
5031
|
+
"kind": "Content",
|
|
5032
|
+
"text": "get blockTypeRegistry(): "
|
|
5033
|
+
},
|
|
5034
|
+
{
|
|
5035
|
+
"kind": "Reference",
|
|
5036
|
+
"text": "BlockTypeRegistry",
|
|
5037
|
+
"canonicalReference": "server!BlockTypeRegistry:class"
|
|
5038
|
+
},
|
|
5039
|
+
{
|
|
5040
|
+
"kind": "Content",
|
|
5041
|
+
"text": ";"
|
|
5042
|
+
}
|
|
5043
|
+
],
|
|
5044
|
+
"isReadonly": true,
|
|
5045
|
+
"isOptional": false,
|
|
5046
|
+
"releaseTag": "Public",
|
|
5047
|
+
"name": "blockTypeRegistry",
|
|
5048
|
+
"propertyTypeTokenRange": {
|
|
5049
|
+
"startIndex": 1,
|
|
5050
|
+
"endIndex": 2
|
|
5051
|
+
},
|
|
5052
|
+
"isStatic": false,
|
|
5053
|
+
"isProtected": false,
|
|
5054
|
+
"isAbstract": false
|
|
5055
|
+
},
|
|
4939
5056
|
{
|
|
4940
5057
|
"kind": "Property",
|
|
4941
5058
|
"canonicalReference": "server!BlockType#colliderOptions:member",
|
|
@@ -5604,11 +5721,19 @@
|
|
|
5604
5721
|
{
|
|
5605
5722
|
"kind": "Method",
|
|
5606
5723
|
"canonicalReference": "server!BlockTypeRegistry#getAllBlockTypes:member(1)",
|
|
5607
|
-
"docComment": "/**\n * Get all registered block types.\n *\n * @returns An array of all registered block types.\n */\n",
|
|
5724
|
+
"docComment": "/**\n * Get all registered block types.\n *\n * @param tickAllocated - Whether to use the tick allocator to allocate the returned array of BlockType instances. The allocated array will be collected and released at the end of the current tick if true. Only use this if you know what you're doing.\n *\n * @returns An array of all registered block types.\n */\n",
|
|
5608
5725
|
"excerptTokens": [
|
|
5609
5726
|
{
|
|
5610
5727
|
"kind": "Content",
|
|
5611
|
-
"text": "getAllBlockTypes(
|
|
5728
|
+
"text": "getAllBlockTypes(tickAllocated?: "
|
|
5729
|
+
},
|
|
5730
|
+
{
|
|
5731
|
+
"kind": "Content",
|
|
5732
|
+
"text": "boolean"
|
|
5733
|
+
},
|
|
5734
|
+
{
|
|
5735
|
+
"kind": "Content",
|
|
5736
|
+
"text": "): "
|
|
5612
5737
|
},
|
|
5613
5738
|
{
|
|
5614
5739
|
"kind": "Reference",
|
|
@@ -5626,13 +5751,22 @@
|
|
|
5626
5751
|
],
|
|
5627
5752
|
"isStatic": false,
|
|
5628
5753
|
"returnTypeTokenRange": {
|
|
5629
|
-
"startIndex":
|
|
5630
|
-
"endIndex":
|
|
5754
|
+
"startIndex": 3,
|
|
5755
|
+
"endIndex": 5
|
|
5631
5756
|
},
|
|
5632
5757
|
"releaseTag": "Public",
|
|
5633
5758
|
"isProtected": false,
|
|
5634
5759
|
"overloadIndex": 1,
|
|
5635
|
-
"parameters": [
|
|
5760
|
+
"parameters": [
|
|
5761
|
+
{
|
|
5762
|
+
"parameterName": "tickAllocated",
|
|
5763
|
+
"parameterTypeTokenRange": {
|
|
5764
|
+
"startIndex": 1,
|
|
5765
|
+
"endIndex": 2
|
|
5766
|
+
},
|
|
5767
|
+
"isOptional": true
|
|
5768
|
+
}
|
|
5769
|
+
],
|
|
5636
5770
|
"isOptional": false,
|
|
5637
5771
|
"isAbstract": false,
|
|
5638
5772
|
"name": "getAllBlockTypes"
|
|
@@ -6541,7 +6675,16 @@
|
|
|
6541
6675
|
"excerptTokens": [
|
|
6542
6676
|
{
|
|
6543
6677
|
"kind": "Content",
|
|
6544
|
-
"text": "constructor(
|
|
6678
|
+
"text": "constructor(chunkLattice: "
|
|
6679
|
+
},
|
|
6680
|
+
{
|
|
6681
|
+
"kind": "Reference",
|
|
6682
|
+
"text": "ChunkLattice",
|
|
6683
|
+
"canonicalReference": "server!ChunkLattice:class"
|
|
6684
|
+
},
|
|
6685
|
+
{
|
|
6686
|
+
"kind": "Content",
|
|
6687
|
+
"text": ", originCoordinate: "
|
|
6545
6688
|
},
|
|
6546
6689
|
{
|
|
6547
6690
|
"kind": "Reference",
|
|
@@ -6558,12 +6701,20 @@
|
|
|
6558
6701
|
"overloadIndex": 1,
|
|
6559
6702
|
"parameters": [
|
|
6560
6703
|
{
|
|
6561
|
-
"parameterName": "
|
|
6704
|
+
"parameterName": "chunkLattice",
|
|
6562
6705
|
"parameterTypeTokenRange": {
|
|
6563
6706
|
"startIndex": 1,
|
|
6564
6707
|
"endIndex": 2
|
|
6565
6708
|
},
|
|
6566
6709
|
"isOptional": false
|
|
6710
|
+
},
|
|
6711
|
+
{
|
|
6712
|
+
"parameterName": "originCoordinate",
|
|
6713
|
+
"parameterTypeTokenRange": {
|
|
6714
|
+
"startIndex": 3,
|
|
6715
|
+
"endIndex": 4
|
|
6716
|
+
},
|
|
6717
|
+
"isOptional": false
|
|
6567
6718
|
}
|
|
6568
6719
|
]
|
|
6569
6720
|
},
|
|
@@ -6660,6 +6811,37 @@
|
|
|
6660
6811
|
"isProtected": false,
|
|
6661
6812
|
"isAbstract": false
|
|
6662
6813
|
},
|
|
6814
|
+
{
|
|
6815
|
+
"kind": "Property",
|
|
6816
|
+
"canonicalReference": "server!Chunk#chunkLattice:member",
|
|
6817
|
+
"docComment": "/**\n * The chunk lattice that the chunk belongs to.\n */\n",
|
|
6818
|
+
"excerptTokens": [
|
|
6819
|
+
{
|
|
6820
|
+
"kind": "Content",
|
|
6821
|
+
"text": "get chunkLattice(): "
|
|
6822
|
+
},
|
|
6823
|
+
{
|
|
6824
|
+
"kind": "Reference",
|
|
6825
|
+
"text": "ChunkLattice",
|
|
6826
|
+
"canonicalReference": "server!ChunkLattice:class"
|
|
6827
|
+
},
|
|
6828
|
+
{
|
|
6829
|
+
"kind": "Content",
|
|
6830
|
+
"text": ";"
|
|
6831
|
+
}
|
|
6832
|
+
],
|
|
6833
|
+
"isReadonly": true,
|
|
6834
|
+
"isOptional": false,
|
|
6835
|
+
"releaseTag": "Public",
|
|
6836
|
+
"name": "chunkLattice",
|
|
6837
|
+
"propertyTypeTokenRange": {
|
|
6838
|
+
"startIndex": 1,
|
|
6839
|
+
"endIndex": 2
|
|
6840
|
+
},
|
|
6841
|
+
"isStatic": false,
|
|
6842
|
+
"isProtected": false,
|
|
6843
|
+
"isAbstract": false
|
|
6844
|
+
},
|
|
6663
6845
|
{
|
|
6664
6846
|
"kind": "Method",
|
|
6665
6847
|
"canonicalReference": "server!Chunk#getBlockId:member(1)",
|
|
@@ -7019,11 +7201,19 @@
|
|
|
7019
7201
|
{
|
|
7020
7202
|
"kind": "Method",
|
|
7021
7203
|
"canonicalReference": "server!ChunkLattice#getAllChunks:member(1)",
|
|
7022
|
-
"docComment": "/**\n * Get all chunks in the lattice.\n *\n * @returns An array of all chunks in the lattice.\n */\n",
|
|
7204
|
+
"docComment": "/**\n * Get all chunks in the lattice.\n *\n * @param tickAllocated - Whether to use the tick allocator to allocate the returned array of Chunk instances. The allocated array will be collected and released at the end of the current tick if true. Only use this if you know what you're doing.\n *\n * @returns An array of all chunks in the lattice.\n */\n",
|
|
7023
7205
|
"excerptTokens": [
|
|
7024
7206
|
{
|
|
7025
7207
|
"kind": "Content",
|
|
7026
|
-
"text": "getAllChunks(
|
|
7208
|
+
"text": "getAllChunks(tickAllocated?: "
|
|
7209
|
+
},
|
|
7210
|
+
{
|
|
7211
|
+
"kind": "Content",
|
|
7212
|
+
"text": "boolean"
|
|
7213
|
+
},
|
|
7214
|
+
{
|
|
7215
|
+
"kind": "Content",
|
|
7216
|
+
"text": "): "
|
|
7027
7217
|
},
|
|
7028
7218
|
{
|
|
7029
7219
|
"kind": "Reference",
|
|
@@ -7041,13 +7231,22 @@
|
|
|
7041
7231
|
],
|
|
7042
7232
|
"isStatic": false,
|
|
7043
7233
|
"returnTypeTokenRange": {
|
|
7044
|
-
"startIndex":
|
|
7045
|
-
"endIndex":
|
|
7234
|
+
"startIndex": 3,
|
|
7235
|
+
"endIndex": 5
|
|
7046
7236
|
},
|
|
7047
7237
|
"releaseTag": "Public",
|
|
7048
7238
|
"isProtected": false,
|
|
7049
7239
|
"overloadIndex": 1,
|
|
7050
|
-
"parameters": [
|
|
7240
|
+
"parameters": [
|
|
7241
|
+
{
|
|
7242
|
+
"parameterName": "tickAllocated",
|
|
7243
|
+
"parameterTypeTokenRange": {
|
|
7244
|
+
"startIndex": 1,
|
|
7245
|
+
"endIndex": 2
|
|
7246
|
+
},
|
|
7247
|
+
"isOptional": true
|
|
7248
|
+
}
|
|
7249
|
+
],
|
|
7051
7250
|
"isOptional": false,
|
|
7052
7251
|
"isAbstract": false,
|
|
7053
7252
|
"name": "getAllChunks"
|
|
@@ -7469,6 +7668,37 @@
|
|
|
7469
7668
|
"isOptional": false,
|
|
7470
7669
|
"isAbstract": false,
|
|
7471
7670
|
"name": "setBlock"
|
|
7671
|
+
},
|
|
7672
|
+
{
|
|
7673
|
+
"kind": "Property",
|
|
7674
|
+
"canonicalReference": "server!ChunkLattice#world:member",
|
|
7675
|
+
"docComment": "/**\n * The world that the chunk lattice belongs to.\n */\n",
|
|
7676
|
+
"excerptTokens": [
|
|
7677
|
+
{
|
|
7678
|
+
"kind": "Content",
|
|
7679
|
+
"text": "get world(): "
|
|
7680
|
+
},
|
|
7681
|
+
{
|
|
7682
|
+
"kind": "Reference",
|
|
7683
|
+
"text": "World",
|
|
7684
|
+
"canonicalReference": "server!World:class"
|
|
7685
|
+
},
|
|
7686
|
+
{
|
|
7687
|
+
"kind": "Content",
|
|
7688
|
+
"text": ";"
|
|
7689
|
+
}
|
|
7690
|
+
],
|
|
7691
|
+
"isReadonly": true,
|
|
7692
|
+
"isOptional": false,
|
|
7693
|
+
"releaseTag": "Public",
|
|
7694
|
+
"name": "world",
|
|
7695
|
+
"propertyTypeTokenRange": {
|
|
7696
|
+
"startIndex": 1,
|
|
7697
|
+
"endIndex": 2
|
|
7698
|
+
},
|
|
7699
|
+
"isStatic": false,
|
|
7700
|
+
"isProtected": false,
|
|
7701
|
+
"isAbstract": false
|
|
7472
7702
|
}
|
|
7473
7703
|
],
|
|
7474
7704
|
"extendsTokenRange": {
|
|
@@ -16600,11 +16830,19 @@
|
|
|
16600
16830
|
{
|
|
16601
16831
|
"kind": "Method",
|
|
16602
16832
|
"canonicalReference": "server!EntityManager#getAllEntities:member(1)",
|
|
16603
|
-
"docComment": "/**\n * Gets all spawned entities in the world.\n *\n * @returns All spawned entities in the world.\n */\n",
|
|
16833
|
+
"docComment": "/**\n * Gets all spawned entities in the world.\n *\n * @param tickAllocated - Whether to use the tick allocator to allocate the returned array of Entity instances. The allocated array will be collected and released at the end of the current tick if true. Only use this if you know what you're doing.\n *\n * @returns All spawned entities in the world.\n */\n",
|
|
16604
16834
|
"excerptTokens": [
|
|
16605
16835
|
{
|
|
16606
16836
|
"kind": "Content",
|
|
16607
|
-
"text": "getAllEntities(
|
|
16837
|
+
"text": "getAllEntities(tickAllocated?: "
|
|
16838
|
+
},
|
|
16839
|
+
{
|
|
16840
|
+
"kind": "Content",
|
|
16841
|
+
"text": "boolean"
|
|
16842
|
+
},
|
|
16843
|
+
{
|
|
16844
|
+
"kind": "Content",
|
|
16845
|
+
"text": "): "
|
|
16608
16846
|
},
|
|
16609
16847
|
{
|
|
16610
16848
|
"kind": "Reference",
|
|
@@ -16622,13 +16860,22 @@
|
|
|
16622
16860
|
],
|
|
16623
16861
|
"isStatic": false,
|
|
16624
16862
|
"returnTypeTokenRange": {
|
|
16625
|
-
"startIndex":
|
|
16626
|
-
"endIndex":
|
|
16863
|
+
"startIndex": 3,
|
|
16864
|
+
"endIndex": 5
|
|
16627
16865
|
},
|
|
16628
16866
|
"releaseTag": "Public",
|
|
16629
16867
|
"isProtected": false,
|
|
16630
16868
|
"overloadIndex": 1,
|
|
16631
|
-
"parameters": [
|
|
16869
|
+
"parameters": [
|
|
16870
|
+
{
|
|
16871
|
+
"parameterName": "tickAllocated",
|
|
16872
|
+
"parameterTypeTokenRange": {
|
|
16873
|
+
"startIndex": 1,
|
|
16874
|
+
"endIndex": 2
|
|
16875
|
+
},
|
|
16876
|
+
"isOptional": true
|
|
16877
|
+
}
|
|
16878
|
+
],
|
|
16632
16879
|
"isOptional": false,
|
|
16633
16880
|
"isAbstract": false,
|
|
16634
16881
|
"name": "getAllEntities"
|
|
@@ -22557,11 +22804,19 @@
|
|
|
22557
22804
|
{
|
|
22558
22805
|
"kind": "Method",
|
|
22559
22806
|
"canonicalReference": "server!LightManager#getAllLights:member(1)",
|
|
22560
|
-
"docComment": "/**\n * Retrieves all spawned Light instances for the world.\n *\n * @returns An array of Light instances.\n */\n",
|
|
22807
|
+
"docComment": "/**\n * Retrieves all spawned Light instances for the world.\n *\n * @param tickAllocated - Whether to use the tick allocator to allocate the returned array of Light instances. The allocated array will be collected and released at the end of the current tick if true. Only use this if you know what you're doing.\n *\n * @returns An array of Light instances.\n */\n",
|
|
22561
22808
|
"excerptTokens": [
|
|
22562
22809
|
{
|
|
22563
22810
|
"kind": "Content",
|
|
22564
|
-
"text": "getAllLights(
|
|
22811
|
+
"text": "getAllLights(tickAllocated?: "
|
|
22812
|
+
},
|
|
22813
|
+
{
|
|
22814
|
+
"kind": "Content",
|
|
22815
|
+
"text": "boolean"
|
|
22816
|
+
},
|
|
22817
|
+
{
|
|
22818
|
+
"kind": "Content",
|
|
22819
|
+
"text": "): "
|
|
22565
22820
|
},
|
|
22566
22821
|
{
|
|
22567
22822
|
"kind": "Reference",
|
|
@@ -22579,13 +22834,22 @@
|
|
|
22579
22834
|
],
|
|
22580
22835
|
"isStatic": false,
|
|
22581
22836
|
"returnTypeTokenRange": {
|
|
22582
|
-
"startIndex":
|
|
22583
|
-
"endIndex":
|
|
22837
|
+
"startIndex": 3,
|
|
22838
|
+
"endIndex": 5
|
|
22584
22839
|
},
|
|
22585
22840
|
"releaseTag": "Public",
|
|
22586
22841
|
"isProtected": false,
|
|
22587
22842
|
"overloadIndex": 1,
|
|
22588
|
-
"parameters": [
|
|
22843
|
+
"parameters": [
|
|
22844
|
+
{
|
|
22845
|
+
"parameterName": "tickAllocated",
|
|
22846
|
+
"parameterTypeTokenRange": {
|
|
22847
|
+
"startIndex": 1,
|
|
22848
|
+
"endIndex": 2
|
|
22849
|
+
},
|
|
22850
|
+
"isOptional": true
|
|
22851
|
+
}
|
|
22852
|
+
],
|
|
22589
22853
|
"isOptional": false,
|
|
22590
22854
|
"isAbstract": false,
|
|
22591
22855
|
"name": "getAllLights"
|
|
@@ -28995,36 +29259,6 @@
|
|
|
28995
29259
|
"isProtected": false,
|
|
28996
29260
|
"isAbstract": false
|
|
28997
29261
|
},
|
|
28998
|
-
{
|
|
28999
|
-
"kind": "Property",
|
|
29000
|
-
"canonicalReference": "server!ParticleEmitter#isStopped:member",
|
|
29001
|
-
"docComment": "/**\n * Whether the ParticleEmitter is stopped.\n */\n",
|
|
29002
|
-
"excerptTokens": [
|
|
29003
|
-
{
|
|
29004
|
-
"kind": "Content",
|
|
29005
|
-
"text": "get isStopped(): "
|
|
29006
|
-
},
|
|
29007
|
-
{
|
|
29008
|
-
"kind": "Content",
|
|
29009
|
-
"text": "boolean"
|
|
29010
|
-
},
|
|
29011
|
-
{
|
|
29012
|
-
"kind": "Content",
|
|
29013
|
-
"text": ";"
|
|
29014
|
-
}
|
|
29015
|
-
],
|
|
29016
|
-
"isReadonly": true,
|
|
29017
|
-
"isOptional": false,
|
|
29018
|
-
"releaseTag": "Public",
|
|
29019
|
-
"name": "isStopped",
|
|
29020
|
-
"propertyTypeTokenRange": {
|
|
29021
|
-
"startIndex": 1,
|
|
29022
|
-
"endIndex": 2
|
|
29023
|
-
},
|
|
29024
|
-
"isStatic": false,
|
|
29025
|
-
"isProtected": false,
|
|
29026
|
-
"isAbstract": false
|
|
29027
|
-
},
|
|
29028
29262
|
{
|
|
29029
29263
|
"kind": "Property",
|
|
29030
29264
|
"canonicalReference": "server!ParticleEmitter#lifetime:member",
|
|
@@ -29270,6 +29504,36 @@
|
|
|
29270
29504
|
"isProtected": false,
|
|
29271
29505
|
"isAbstract": false
|
|
29272
29506
|
},
|
|
29507
|
+
{
|
|
29508
|
+
"kind": "Property",
|
|
29509
|
+
"canonicalReference": "server!ParticleEmitter#paused:member",
|
|
29510
|
+
"docComment": "/**\n * Whether an emitted particle is being paused.\n */\n",
|
|
29511
|
+
"excerptTokens": [
|
|
29512
|
+
{
|
|
29513
|
+
"kind": "Content",
|
|
29514
|
+
"text": "get paused(): "
|
|
29515
|
+
},
|
|
29516
|
+
{
|
|
29517
|
+
"kind": "Content",
|
|
29518
|
+
"text": "boolean | undefined"
|
|
29519
|
+
},
|
|
29520
|
+
{
|
|
29521
|
+
"kind": "Content",
|
|
29522
|
+
"text": ";"
|
|
29523
|
+
}
|
|
29524
|
+
],
|
|
29525
|
+
"isReadonly": true,
|
|
29526
|
+
"isOptional": false,
|
|
29527
|
+
"releaseTag": "Public",
|
|
29528
|
+
"name": "paused",
|
|
29529
|
+
"propertyTypeTokenRange": {
|
|
29530
|
+
"startIndex": 1,
|
|
29531
|
+
"endIndex": 2
|
|
29532
|
+
},
|
|
29533
|
+
"isStatic": false,
|
|
29534
|
+
"isProtected": false,
|
|
29535
|
+
"isAbstract": false
|
|
29536
|
+
},
|
|
29273
29537
|
{
|
|
29274
29538
|
"kind": "Property",
|
|
29275
29539
|
"canonicalReference": "server!ParticleEmitter#position:member",
|
|
@@ -29403,7 +29667,7 @@
|
|
|
29403
29667
|
{
|
|
29404
29668
|
"kind": "Method",
|
|
29405
29669
|
"canonicalReference": "server!ParticleEmitter#restart:member(1)",
|
|
29406
|
-
"docComment": "/**\n * Restarts the particle emission if it was previously stopped
|
|
29670
|
+
"docComment": "/**\n * Restarts the particle emission if it was previously stopped.\n */\n",
|
|
29407
29671
|
"excerptTokens": [
|
|
29408
29672
|
{
|
|
29409
29673
|
"kind": "Content",
|
|
@@ -30402,12 +30666,12 @@
|
|
|
30402
30666
|
},
|
|
30403
30667
|
{
|
|
30404
30668
|
"kind": "Method",
|
|
30405
|
-
"canonicalReference": "server!ParticleEmitter#
|
|
30406
|
-
"docComment": "/**\n * Sets the size of an emitted particle.\n *\n * @param
|
|
30669
|
+
"canonicalReference": "server!ParticleEmitter#setSizeEnd:member(1)",
|
|
30670
|
+
"docComment": "/**\n * Sets the size at the end of an emitted particle's lifetime.\n *\n * @param sizeEnd - The size at the end of an emitted particle's lifetime.\n */\n",
|
|
30407
30671
|
"excerptTokens": [
|
|
30408
30672
|
{
|
|
30409
30673
|
"kind": "Content",
|
|
30410
|
-
"text": "
|
|
30674
|
+
"text": "setSizeEnd(sizeEnd: "
|
|
30411
30675
|
},
|
|
30412
30676
|
{
|
|
30413
30677
|
"kind": "Content",
|
|
@@ -30436,7 +30700,7 @@
|
|
|
30436
30700
|
"overloadIndex": 1,
|
|
30437
30701
|
"parameters": [
|
|
30438
30702
|
{
|
|
30439
|
-
"parameterName": "
|
|
30703
|
+
"parameterName": "sizeEnd",
|
|
30440
30704
|
"parameterTypeTokenRange": {
|
|
30441
30705
|
"startIndex": 1,
|
|
30442
30706
|
"endIndex": 2
|
|
@@ -30446,16 +30710,16 @@
|
|
|
30446
30710
|
],
|
|
30447
30711
|
"isOptional": false,
|
|
30448
30712
|
"isAbstract": false,
|
|
30449
|
-
"name": "
|
|
30713
|
+
"name": "setSizeEnd"
|
|
30450
30714
|
},
|
|
30451
30715
|
{
|
|
30452
30716
|
"kind": "Method",
|
|
30453
|
-
"canonicalReference": "server!ParticleEmitter#
|
|
30454
|
-
"docComment": "/**\n * Sets the size variance of an emitted particle.\n *\n * @param
|
|
30717
|
+
"canonicalReference": "server!ParticleEmitter#setSizeEndVariance:member(1)",
|
|
30718
|
+
"docComment": "/**\n * Sets the size variance at the end of an emitted particle's lifetime.\n *\n * @param sizeEndVariance - The size variance at the end of an emitted particle's lifetime.\n */\n",
|
|
30455
30719
|
"excerptTokens": [
|
|
30456
30720
|
{
|
|
30457
30721
|
"kind": "Content",
|
|
30458
|
-
"text": "
|
|
30722
|
+
"text": "setSizeEndVariance(sizeEndVariance: "
|
|
30459
30723
|
},
|
|
30460
30724
|
{
|
|
30461
30725
|
"kind": "Content",
|
|
@@ -30484,7 +30748,7 @@
|
|
|
30484
30748
|
"overloadIndex": 1,
|
|
30485
30749
|
"parameters": [
|
|
30486
30750
|
{
|
|
30487
|
-
"parameterName": "
|
|
30751
|
+
"parameterName": "sizeEndVariance",
|
|
30488
30752
|
"parameterTypeTokenRange": {
|
|
30489
30753
|
"startIndex": 1,
|
|
30490
30754
|
"endIndex": 2
|
|
@@ -30494,7 +30758,103 @@
|
|
|
30494
30758
|
],
|
|
30495
30759
|
"isOptional": false,
|
|
30496
30760
|
"isAbstract": false,
|
|
30497
|
-
"name": "
|
|
30761
|
+
"name": "setSizeEndVariance"
|
|
30762
|
+
},
|
|
30763
|
+
{
|
|
30764
|
+
"kind": "Method",
|
|
30765
|
+
"canonicalReference": "server!ParticleEmitter#setSizeStart:member(1)",
|
|
30766
|
+
"docComment": "/**\n * Sets the size at the start of an emitted particle's lifetime.\n *\n * @param sizeStart - The size at the start of an emitted particle's lifetime.\n */\n",
|
|
30767
|
+
"excerptTokens": [
|
|
30768
|
+
{
|
|
30769
|
+
"kind": "Content",
|
|
30770
|
+
"text": "setSizeStart(sizeStart: "
|
|
30771
|
+
},
|
|
30772
|
+
{
|
|
30773
|
+
"kind": "Content",
|
|
30774
|
+
"text": "number"
|
|
30775
|
+
},
|
|
30776
|
+
{
|
|
30777
|
+
"kind": "Content",
|
|
30778
|
+
"text": "): "
|
|
30779
|
+
},
|
|
30780
|
+
{
|
|
30781
|
+
"kind": "Content",
|
|
30782
|
+
"text": "void"
|
|
30783
|
+
},
|
|
30784
|
+
{
|
|
30785
|
+
"kind": "Content",
|
|
30786
|
+
"text": ";"
|
|
30787
|
+
}
|
|
30788
|
+
],
|
|
30789
|
+
"isStatic": false,
|
|
30790
|
+
"returnTypeTokenRange": {
|
|
30791
|
+
"startIndex": 3,
|
|
30792
|
+
"endIndex": 4
|
|
30793
|
+
},
|
|
30794
|
+
"releaseTag": "Public",
|
|
30795
|
+
"isProtected": false,
|
|
30796
|
+
"overloadIndex": 1,
|
|
30797
|
+
"parameters": [
|
|
30798
|
+
{
|
|
30799
|
+
"parameterName": "sizeStart",
|
|
30800
|
+
"parameterTypeTokenRange": {
|
|
30801
|
+
"startIndex": 1,
|
|
30802
|
+
"endIndex": 2
|
|
30803
|
+
},
|
|
30804
|
+
"isOptional": false
|
|
30805
|
+
}
|
|
30806
|
+
],
|
|
30807
|
+
"isOptional": false,
|
|
30808
|
+
"isAbstract": false,
|
|
30809
|
+
"name": "setSizeStart"
|
|
30810
|
+
},
|
|
30811
|
+
{
|
|
30812
|
+
"kind": "Method",
|
|
30813
|
+
"canonicalReference": "server!ParticleEmitter#setSizeStartVariance:member(1)",
|
|
30814
|
+
"docComment": "/**\n * Sets the size variance at the start of an emitted particle's lifetime.\n *\n * @param sizeStartVariance - The size variance at the start of an emitted particle's lifetime.\n */\n",
|
|
30815
|
+
"excerptTokens": [
|
|
30816
|
+
{
|
|
30817
|
+
"kind": "Content",
|
|
30818
|
+
"text": "setSizeStartVariance(sizeStartVariance: "
|
|
30819
|
+
},
|
|
30820
|
+
{
|
|
30821
|
+
"kind": "Content",
|
|
30822
|
+
"text": "number"
|
|
30823
|
+
},
|
|
30824
|
+
{
|
|
30825
|
+
"kind": "Content",
|
|
30826
|
+
"text": "): "
|
|
30827
|
+
},
|
|
30828
|
+
{
|
|
30829
|
+
"kind": "Content",
|
|
30830
|
+
"text": "void"
|
|
30831
|
+
},
|
|
30832
|
+
{
|
|
30833
|
+
"kind": "Content",
|
|
30834
|
+
"text": ";"
|
|
30835
|
+
}
|
|
30836
|
+
],
|
|
30837
|
+
"isStatic": false,
|
|
30838
|
+
"returnTypeTokenRange": {
|
|
30839
|
+
"startIndex": 3,
|
|
30840
|
+
"endIndex": 4
|
|
30841
|
+
},
|
|
30842
|
+
"releaseTag": "Public",
|
|
30843
|
+
"isProtected": false,
|
|
30844
|
+
"overloadIndex": 1,
|
|
30845
|
+
"parameters": [
|
|
30846
|
+
{
|
|
30847
|
+
"parameterName": "sizeStartVariance",
|
|
30848
|
+
"parameterTypeTokenRange": {
|
|
30849
|
+
"startIndex": 1,
|
|
30850
|
+
"endIndex": 2
|
|
30851
|
+
},
|
|
30852
|
+
"isOptional": false
|
|
30853
|
+
}
|
|
30854
|
+
],
|
|
30855
|
+
"isOptional": false,
|
|
30856
|
+
"isAbstract": false,
|
|
30857
|
+
"name": "setSizeStartVariance"
|
|
30498
30858
|
},
|
|
30499
30859
|
{
|
|
30500
30860
|
"kind": "Method",
|
|
@@ -30692,12 +31052,12 @@
|
|
|
30692
31052
|
},
|
|
30693
31053
|
{
|
|
30694
31054
|
"kind": "Property",
|
|
30695
|
-
"canonicalReference": "server!ParticleEmitter#
|
|
30696
|
-
"docComment": "/**\n * The size of an emitted particle.\n */\n",
|
|
31055
|
+
"canonicalReference": "server!ParticleEmitter#sizeEnd:member",
|
|
31056
|
+
"docComment": "/**\n * The size at the end of an emitted particle's lifetime.\n */\n",
|
|
30697
31057
|
"excerptTokens": [
|
|
30698
31058
|
{
|
|
30699
31059
|
"kind": "Content",
|
|
30700
|
-
"text": "get
|
|
31060
|
+
"text": "get sizeEnd(): "
|
|
30701
31061
|
},
|
|
30702
31062
|
{
|
|
30703
31063
|
"kind": "Content",
|
|
@@ -30711,7 +31071,97 @@
|
|
|
30711
31071
|
"isReadonly": true,
|
|
30712
31072
|
"isOptional": false,
|
|
30713
31073
|
"releaseTag": "Public",
|
|
30714
|
-
"name": "
|
|
31074
|
+
"name": "sizeEnd",
|
|
31075
|
+
"propertyTypeTokenRange": {
|
|
31076
|
+
"startIndex": 1,
|
|
31077
|
+
"endIndex": 2
|
|
31078
|
+
},
|
|
31079
|
+
"isStatic": false,
|
|
31080
|
+
"isProtected": false,
|
|
31081
|
+
"isAbstract": false
|
|
31082
|
+
},
|
|
31083
|
+
{
|
|
31084
|
+
"kind": "Property",
|
|
31085
|
+
"canonicalReference": "server!ParticleEmitter#sizeEndVariance:member",
|
|
31086
|
+
"docComment": "/**\n * The size variance at the end of an emitted particle's lifetime.\n */\n",
|
|
31087
|
+
"excerptTokens": [
|
|
31088
|
+
{
|
|
31089
|
+
"kind": "Content",
|
|
31090
|
+
"text": "get sizeEndVariance(): "
|
|
31091
|
+
},
|
|
31092
|
+
{
|
|
31093
|
+
"kind": "Content",
|
|
31094
|
+
"text": "number | undefined"
|
|
31095
|
+
},
|
|
31096
|
+
{
|
|
31097
|
+
"kind": "Content",
|
|
31098
|
+
"text": ";"
|
|
31099
|
+
}
|
|
31100
|
+
],
|
|
31101
|
+
"isReadonly": true,
|
|
31102
|
+
"isOptional": false,
|
|
31103
|
+
"releaseTag": "Public",
|
|
31104
|
+
"name": "sizeEndVariance",
|
|
31105
|
+
"propertyTypeTokenRange": {
|
|
31106
|
+
"startIndex": 1,
|
|
31107
|
+
"endIndex": 2
|
|
31108
|
+
},
|
|
31109
|
+
"isStatic": false,
|
|
31110
|
+
"isProtected": false,
|
|
31111
|
+
"isAbstract": false
|
|
31112
|
+
},
|
|
31113
|
+
{
|
|
31114
|
+
"kind": "Property",
|
|
31115
|
+
"canonicalReference": "server!ParticleEmitter#sizeStart:member",
|
|
31116
|
+
"docComment": "/**\n * The size at the start of an emitted particle's lifetime.\n */\n",
|
|
31117
|
+
"excerptTokens": [
|
|
31118
|
+
{
|
|
31119
|
+
"kind": "Content",
|
|
31120
|
+
"text": "get sizeStart(): "
|
|
31121
|
+
},
|
|
31122
|
+
{
|
|
31123
|
+
"kind": "Content",
|
|
31124
|
+
"text": "number | undefined"
|
|
31125
|
+
},
|
|
31126
|
+
{
|
|
31127
|
+
"kind": "Content",
|
|
31128
|
+
"text": ";"
|
|
31129
|
+
}
|
|
31130
|
+
],
|
|
31131
|
+
"isReadonly": true,
|
|
31132
|
+
"isOptional": false,
|
|
31133
|
+
"releaseTag": "Public",
|
|
31134
|
+
"name": "sizeStart",
|
|
31135
|
+
"propertyTypeTokenRange": {
|
|
31136
|
+
"startIndex": 1,
|
|
31137
|
+
"endIndex": 2
|
|
31138
|
+
},
|
|
31139
|
+
"isStatic": false,
|
|
31140
|
+
"isProtected": false,
|
|
31141
|
+
"isAbstract": false
|
|
31142
|
+
},
|
|
31143
|
+
{
|
|
31144
|
+
"kind": "Property",
|
|
31145
|
+
"canonicalReference": "server!ParticleEmitter#sizeStartVariance:member",
|
|
31146
|
+
"docComment": "/**\n * The size variance at the start of an emitted particle's lifetime.\n */\n",
|
|
31147
|
+
"excerptTokens": [
|
|
31148
|
+
{
|
|
31149
|
+
"kind": "Content",
|
|
31150
|
+
"text": "get sizeStartVariance(): "
|
|
31151
|
+
},
|
|
31152
|
+
{
|
|
31153
|
+
"kind": "Content",
|
|
31154
|
+
"text": "number | undefined"
|
|
31155
|
+
},
|
|
31156
|
+
{
|
|
31157
|
+
"kind": "Content",
|
|
31158
|
+
"text": ";"
|
|
31159
|
+
}
|
|
31160
|
+
],
|
|
31161
|
+
"isReadonly": true,
|
|
31162
|
+
"isOptional": false,
|
|
31163
|
+
"releaseTag": "Public",
|
|
31164
|
+
"name": "sizeStartVariance",
|
|
30715
31165
|
"propertyTypeTokenRange": {
|
|
30716
31166
|
"startIndex": 1,
|
|
30717
31167
|
"endIndex": 2
|
|
@@ -30802,7 +31252,7 @@
|
|
|
30802
31252
|
{
|
|
30803
31253
|
"kind": "Method",
|
|
30804
31254
|
"canonicalReference": "server!ParticleEmitter#stop:member(1)",
|
|
30805
|
-
"docComment": "/**\n * Stops the particle emission
|
|
31255
|
+
"docComment": "/**\n * Stops the particle emission.\n */\n",
|
|
30806
31256
|
"excerptTokens": [
|
|
30807
31257
|
{
|
|
30808
31258
|
"kind": "Content",
|
|
@@ -31379,6 +31829,27 @@
|
|
|
31379
31829
|
"releaseTag": "Public",
|
|
31380
31830
|
"name": "SET_OPACITY_START_VARIANCE"
|
|
31381
31831
|
},
|
|
31832
|
+
{
|
|
31833
|
+
"kind": "EnumMember",
|
|
31834
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_PAUSED:member",
|
|
31835
|
+
"docComment": "",
|
|
31836
|
+
"excerptTokens": [
|
|
31837
|
+
{
|
|
31838
|
+
"kind": "Content",
|
|
31839
|
+
"text": "SET_PAUSED = "
|
|
31840
|
+
},
|
|
31841
|
+
{
|
|
31842
|
+
"kind": "Content",
|
|
31843
|
+
"text": "\"PARTICLE_EMITTER.SET_PAUSED\""
|
|
31844
|
+
}
|
|
31845
|
+
],
|
|
31846
|
+
"initializerTokenRange": {
|
|
31847
|
+
"startIndex": 1,
|
|
31848
|
+
"endIndex": 2
|
|
31849
|
+
},
|
|
31850
|
+
"releaseTag": "Public",
|
|
31851
|
+
"name": "SET_PAUSED"
|
|
31852
|
+
},
|
|
31382
31853
|
{
|
|
31383
31854
|
"kind": "EnumMember",
|
|
31384
31855
|
"canonicalReference": "server!ParticleEmitterEvent.SET_POSITION:member",
|
|
@@ -31465,16 +31936,58 @@
|
|
|
31465
31936
|
},
|
|
31466
31937
|
{
|
|
31467
31938
|
"kind": "EnumMember",
|
|
31468
|
-
"canonicalReference": "server!ParticleEmitterEvent.
|
|
31939
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_END:member",
|
|
31940
|
+
"docComment": "",
|
|
31941
|
+
"excerptTokens": [
|
|
31942
|
+
{
|
|
31943
|
+
"kind": "Content",
|
|
31944
|
+
"text": "SET_SIZE_END = "
|
|
31945
|
+
},
|
|
31946
|
+
{
|
|
31947
|
+
"kind": "Content",
|
|
31948
|
+
"text": "\"PARTICLE_EMITTER.SET_SIZE_END\""
|
|
31949
|
+
}
|
|
31950
|
+
],
|
|
31951
|
+
"initializerTokenRange": {
|
|
31952
|
+
"startIndex": 1,
|
|
31953
|
+
"endIndex": 2
|
|
31954
|
+
},
|
|
31955
|
+
"releaseTag": "Public",
|
|
31956
|
+
"name": "SET_SIZE_END"
|
|
31957
|
+
},
|
|
31958
|
+
{
|
|
31959
|
+
"kind": "EnumMember",
|
|
31960
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_END_VARIANCE:member",
|
|
31961
|
+
"docComment": "",
|
|
31962
|
+
"excerptTokens": [
|
|
31963
|
+
{
|
|
31964
|
+
"kind": "Content",
|
|
31965
|
+
"text": "SET_SIZE_END_VARIANCE = "
|
|
31966
|
+
},
|
|
31967
|
+
{
|
|
31968
|
+
"kind": "Content",
|
|
31969
|
+
"text": "\"PARTICLE_EMITTER.SET_SIZE_END_VARIANCE\""
|
|
31970
|
+
}
|
|
31971
|
+
],
|
|
31972
|
+
"initializerTokenRange": {
|
|
31973
|
+
"startIndex": 1,
|
|
31974
|
+
"endIndex": 2
|
|
31975
|
+
},
|
|
31976
|
+
"releaseTag": "Public",
|
|
31977
|
+
"name": "SET_SIZE_END_VARIANCE"
|
|
31978
|
+
},
|
|
31979
|
+
{
|
|
31980
|
+
"kind": "EnumMember",
|
|
31981
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_START:member",
|
|
31469
31982
|
"docComment": "",
|
|
31470
31983
|
"excerptTokens": [
|
|
31471
31984
|
{
|
|
31472
31985
|
"kind": "Content",
|
|
31473
|
-
"text": "
|
|
31986
|
+
"text": "SET_SIZE_START = "
|
|
31474
31987
|
},
|
|
31475
31988
|
{
|
|
31476
31989
|
"kind": "Content",
|
|
31477
|
-
"text": "\"PARTICLE_EMITTER.
|
|
31990
|
+
"text": "\"PARTICLE_EMITTER.SET_SIZE_START\""
|
|
31478
31991
|
}
|
|
31479
31992
|
],
|
|
31480
31993
|
"initializerTokenRange": {
|
|
@@ -31482,20 +31995,20 @@
|
|
|
31482
31995
|
"endIndex": 2
|
|
31483
31996
|
},
|
|
31484
31997
|
"releaseTag": "Public",
|
|
31485
|
-
"name": "
|
|
31998
|
+
"name": "SET_SIZE_START"
|
|
31486
31999
|
},
|
|
31487
32000
|
{
|
|
31488
32001
|
"kind": "EnumMember",
|
|
31489
|
-
"canonicalReference": "server!ParticleEmitterEvent.
|
|
32002
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_START_VARIANCE:member",
|
|
31490
32003
|
"docComment": "",
|
|
31491
32004
|
"excerptTokens": [
|
|
31492
32005
|
{
|
|
31493
32006
|
"kind": "Content",
|
|
31494
|
-
"text": "
|
|
32007
|
+
"text": "SET_SIZE_START_VARIANCE = "
|
|
31495
32008
|
},
|
|
31496
32009
|
{
|
|
31497
32010
|
"kind": "Content",
|
|
31498
|
-
"text": "\"PARTICLE_EMITTER.
|
|
32011
|
+
"text": "\"PARTICLE_EMITTER.SET_SIZE_START_VARIANCE\""
|
|
31499
32012
|
}
|
|
31500
32013
|
],
|
|
31501
32014
|
"initializerTokenRange": {
|
|
@@ -31503,7 +32016,7 @@
|
|
|
31503
32016
|
"endIndex": 2
|
|
31504
32017
|
},
|
|
31505
32018
|
"releaseTag": "Public",
|
|
31506
|
-
"name": "
|
|
32019
|
+
"name": "SET_SIZE_START_VARIANCE"
|
|
31507
32020
|
},
|
|
31508
32021
|
{
|
|
31509
32022
|
"kind": "EnumMember",
|
|
@@ -32455,6 +32968,51 @@
|
|
|
32455
32968
|
"endIndex": 6
|
|
32456
32969
|
}
|
|
32457
32970
|
},
|
|
32971
|
+
{
|
|
32972
|
+
"kind": "PropertySignature",
|
|
32973
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_PAUSED\":member",
|
|
32974
|
+
"docComment": "/**\n * Emitted when the paused state of an emitted particle is set.\n */\n",
|
|
32975
|
+
"excerptTokens": [
|
|
32976
|
+
{
|
|
32977
|
+
"kind": "Content",
|
|
32978
|
+
"text": "["
|
|
32979
|
+
},
|
|
32980
|
+
{
|
|
32981
|
+
"kind": "Reference",
|
|
32982
|
+
"text": "ParticleEmitterEvent.SET_PAUSED",
|
|
32983
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_PAUSED:member"
|
|
32984
|
+
},
|
|
32985
|
+
{
|
|
32986
|
+
"kind": "Content",
|
|
32987
|
+
"text": "]: "
|
|
32988
|
+
},
|
|
32989
|
+
{
|
|
32990
|
+
"kind": "Content",
|
|
32991
|
+
"text": "{\n particleEmitter: "
|
|
32992
|
+
},
|
|
32993
|
+
{
|
|
32994
|
+
"kind": "Reference",
|
|
32995
|
+
"text": "ParticleEmitter",
|
|
32996
|
+
"canonicalReference": "server!ParticleEmitter:class"
|
|
32997
|
+
},
|
|
32998
|
+
{
|
|
32999
|
+
"kind": "Content",
|
|
33000
|
+
"text": ";\n paused: boolean;\n }"
|
|
33001
|
+
},
|
|
33002
|
+
{
|
|
33003
|
+
"kind": "Content",
|
|
33004
|
+
"text": ";"
|
|
33005
|
+
}
|
|
33006
|
+
],
|
|
33007
|
+
"isReadonly": false,
|
|
33008
|
+
"isOptional": false,
|
|
33009
|
+
"releaseTag": "Public",
|
|
33010
|
+
"name": "\"PARTICLE_EMITTER.SET_PAUSED\"",
|
|
33011
|
+
"propertyTypeTokenRange": {
|
|
33012
|
+
"startIndex": 3,
|
|
33013
|
+
"endIndex": 6
|
|
33014
|
+
}
|
|
33015
|
+
},
|
|
32458
33016
|
{
|
|
32459
33017
|
"kind": "PropertySignature",
|
|
32460
33018
|
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_POSITION_VARIANCE\":member",
|
|
@@ -32655,8 +33213,98 @@
|
|
|
32655
33213
|
},
|
|
32656
33214
|
{
|
|
32657
33215
|
"kind": "PropertySignature",
|
|
32658
|
-
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.
|
|
32659
|
-
"docComment": "/**\n * Emitted when the size variance of an emitted particle is set.\n */\n",
|
|
33216
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_SIZE_END_VARIANCE\":member",
|
|
33217
|
+
"docComment": "/**\n * Emitted when the size variance at the end of an emitted particle's lifetime is set.\n */\n",
|
|
33218
|
+
"excerptTokens": [
|
|
33219
|
+
{
|
|
33220
|
+
"kind": "Content",
|
|
33221
|
+
"text": "["
|
|
33222
|
+
},
|
|
33223
|
+
{
|
|
33224
|
+
"kind": "Reference",
|
|
33225
|
+
"text": "ParticleEmitterEvent.SET_SIZE_END_VARIANCE",
|
|
33226
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_END_VARIANCE:member"
|
|
33227
|
+
},
|
|
33228
|
+
{
|
|
33229
|
+
"kind": "Content",
|
|
33230
|
+
"text": "]: "
|
|
33231
|
+
},
|
|
33232
|
+
{
|
|
33233
|
+
"kind": "Content",
|
|
33234
|
+
"text": "{\n particleEmitter: "
|
|
33235
|
+
},
|
|
33236
|
+
{
|
|
33237
|
+
"kind": "Reference",
|
|
33238
|
+
"text": "ParticleEmitter",
|
|
33239
|
+
"canonicalReference": "server!ParticleEmitter:class"
|
|
33240
|
+
},
|
|
33241
|
+
{
|
|
33242
|
+
"kind": "Content",
|
|
33243
|
+
"text": ";\n sizeEndVariance: number;\n }"
|
|
33244
|
+
},
|
|
33245
|
+
{
|
|
33246
|
+
"kind": "Content",
|
|
33247
|
+
"text": ";"
|
|
33248
|
+
}
|
|
33249
|
+
],
|
|
33250
|
+
"isReadonly": false,
|
|
33251
|
+
"isOptional": false,
|
|
33252
|
+
"releaseTag": "Public",
|
|
33253
|
+
"name": "\"PARTICLE_EMITTER.SET_SIZE_END_VARIANCE\"",
|
|
33254
|
+
"propertyTypeTokenRange": {
|
|
33255
|
+
"startIndex": 3,
|
|
33256
|
+
"endIndex": 6
|
|
33257
|
+
}
|
|
33258
|
+
},
|
|
33259
|
+
{
|
|
33260
|
+
"kind": "PropertySignature",
|
|
33261
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_SIZE_END\":member",
|
|
33262
|
+
"docComment": "/**\n * Emitted when the size at the end of an emitted particle's lifetime is set.\n */\n",
|
|
33263
|
+
"excerptTokens": [
|
|
33264
|
+
{
|
|
33265
|
+
"kind": "Content",
|
|
33266
|
+
"text": "["
|
|
33267
|
+
},
|
|
33268
|
+
{
|
|
33269
|
+
"kind": "Reference",
|
|
33270
|
+
"text": "ParticleEmitterEvent.SET_SIZE_END",
|
|
33271
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_END:member"
|
|
33272
|
+
},
|
|
33273
|
+
{
|
|
33274
|
+
"kind": "Content",
|
|
33275
|
+
"text": "]: "
|
|
33276
|
+
},
|
|
33277
|
+
{
|
|
33278
|
+
"kind": "Content",
|
|
33279
|
+
"text": "{\n particleEmitter: "
|
|
33280
|
+
},
|
|
33281
|
+
{
|
|
33282
|
+
"kind": "Reference",
|
|
33283
|
+
"text": "ParticleEmitter",
|
|
33284
|
+
"canonicalReference": "server!ParticleEmitter:class"
|
|
33285
|
+
},
|
|
33286
|
+
{
|
|
33287
|
+
"kind": "Content",
|
|
33288
|
+
"text": ";\n sizeEnd: number;\n }"
|
|
33289
|
+
},
|
|
33290
|
+
{
|
|
33291
|
+
"kind": "Content",
|
|
33292
|
+
"text": ";"
|
|
33293
|
+
}
|
|
33294
|
+
],
|
|
33295
|
+
"isReadonly": false,
|
|
33296
|
+
"isOptional": false,
|
|
33297
|
+
"releaseTag": "Public",
|
|
33298
|
+
"name": "\"PARTICLE_EMITTER.SET_SIZE_END\"",
|
|
33299
|
+
"propertyTypeTokenRange": {
|
|
33300
|
+
"startIndex": 3,
|
|
33301
|
+
"endIndex": 6
|
|
33302
|
+
}
|
|
33303
|
+
},
|
|
33304
|
+
{
|
|
33305
|
+
"kind": "PropertySignature",
|
|
33306
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_SIZE_START_VARIANCE\":member",
|
|
33307
|
+
"docComment": "/**\n * Emitted when the size variance at the start of an emitted particle's lifetime is set.\n */\n",
|
|
32660
33308
|
"excerptTokens": [
|
|
32661
33309
|
{
|
|
32662
33310
|
"kind": "Content",
|
|
@@ -32664,8 +33312,8 @@
|
|
|
32664
33312
|
},
|
|
32665
33313
|
{
|
|
32666
33314
|
"kind": "Reference",
|
|
32667
|
-
"text": "ParticleEmitterEvent.
|
|
32668
|
-
"canonicalReference": "server!ParticleEmitterEvent.
|
|
33315
|
+
"text": "ParticleEmitterEvent.SET_SIZE_START_VARIANCE",
|
|
33316
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_START_VARIANCE:member"
|
|
32669
33317
|
},
|
|
32670
33318
|
{
|
|
32671
33319
|
"kind": "Content",
|
|
@@ -32682,7 +33330,7 @@
|
|
|
32682
33330
|
},
|
|
32683
33331
|
{
|
|
32684
33332
|
"kind": "Content",
|
|
32685
|
-
"text": ";\n
|
|
33333
|
+
"text": ";\n sizeStartVariance: number;\n }"
|
|
32686
33334
|
},
|
|
32687
33335
|
{
|
|
32688
33336
|
"kind": "Content",
|
|
@@ -32692,7 +33340,7 @@
|
|
|
32692
33340
|
"isReadonly": false,
|
|
32693
33341
|
"isOptional": false,
|
|
32694
33342
|
"releaseTag": "Public",
|
|
32695
|
-
"name": "\"PARTICLE_EMITTER.
|
|
33343
|
+
"name": "\"PARTICLE_EMITTER.SET_SIZE_START_VARIANCE\"",
|
|
32696
33344
|
"propertyTypeTokenRange": {
|
|
32697
33345
|
"startIndex": 3,
|
|
32698
33346
|
"endIndex": 6
|
|
@@ -32700,8 +33348,8 @@
|
|
|
32700
33348
|
},
|
|
32701
33349
|
{
|
|
32702
33350
|
"kind": "PropertySignature",
|
|
32703
|
-
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.
|
|
32704
|
-
"docComment": "/**\n * Emitted when the size of an emitted particle is set.\n */\n",
|
|
33351
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_SIZE_START\":member",
|
|
33352
|
+
"docComment": "/**\n * Emitted when the size at the start of an emitted particle's lifetime is set.\n */\n",
|
|
32705
33353
|
"excerptTokens": [
|
|
32706
33354
|
{
|
|
32707
33355
|
"kind": "Content",
|
|
@@ -32709,8 +33357,8 @@
|
|
|
32709
33357
|
},
|
|
32710
33358
|
{
|
|
32711
33359
|
"kind": "Reference",
|
|
32712
|
-
"text": "ParticleEmitterEvent.
|
|
32713
|
-
"canonicalReference": "server!ParticleEmitterEvent.
|
|
33360
|
+
"text": "ParticleEmitterEvent.SET_SIZE_START",
|
|
33361
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_START:member"
|
|
32714
33362
|
},
|
|
32715
33363
|
{
|
|
32716
33364
|
"kind": "Content",
|
|
@@ -32727,7 +33375,7 @@
|
|
|
32727
33375
|
},
|
|
32728
33376
|
{
|
|
32729
33377
|
"kind": "Content",
|
|
32730
|
-
"text": ";\n
|
|
33378
|
+
"text": ";\n sizeStart: number;\n }"
|
|
32731
33379
|
},
|
|
32732
33380
|
{
|
|
32733
33381
|
"kind": "Content",
|
|
@@ -32737,7 +33385,7 @@
|
|
|
32737
33385
|
"isReadonly": false,
|
|
32738
33386
|
"isOptional": false,
|
|
32739
33387
|
"releaseTag": "Public",
|
|
32740
|
-
"name": "\"PARTICLE_EMITTER.
|
|
33388
|
+
"name": "\"PARTICLE_EMITTER.SET_SIZE_START\"",
|
|
32741
33389
|
"propertyTypeTokenRange": {
|
|
32742
33390
|
"startIndex": 3,
|
|
32743
33391
|
"endIndex": 6
|
|
@@ -33062,11 +33710,19 @@
|
|
|
33062
33710
|
{
|
|
33063
33711
|
"kind": "Method",
|
|
33064
33712
|
"canonicalReference": "server!ParticleEmitterManager#getAllParticleEmitters:member(1)",
|
|
33065
|
-
"docComment": "/**\n * Retrieves all spawned ParticleEmitter instances for the world.\n *\n * @returns An array of ParticleEmitter instances.\n */\n",
|
|
33713
|
+
"docComment": "/**\n * Retrieves all spawned ParticleEmitter instances for the world.\n *\n * @param tickAllocated - Whether to use the tick allocator to allocate the returned array of ParticleEmitter instances. The allocated array will be collected and released at the end of the current tick if true. Only use this if you know what you're doing.\n *\n * @returns An array of ParticleEmitter instances.\n */\n",
|
|
33066
33714
|
"excerptTokens": [
|
|
33067
33715
|
{
|
|
33068
33716
|
"kind": "Content",
|
|
33069
|
-
"text": "getAllParticleEmitters(
|
|
33717
|
+
"text": "getAllParticleEmitters(tickAllocated?: "
|
|
33718
|
+
},
|
|
33719
|
+
{
|
|
33720
|
+
"kind": "Content",
|
|
33721
|
+
"text": "boolean"
|
|
33722
|
+
},
|
|
33723
|
+
{
|
|
33724
|
+
"kind": "Content",
|
|
33725
|
+
"text": "): "
|
|
33070
33726
|
},
|
|
33071
33727
|
{
|
|
33072
33728
|
"kind": "Reference",
|
|
@@ -33084,13 +33740,22 @@
|
|
|
33084
33740
|
],
|
|
33085
33741
|
"isStatic": false,
|
|
33086
33742
|
"returnTypeTokenRange": {
|
|
33087
|
-
"startIndex":
|
|
33088
|
-
"endIndex":
|
|
33743
|
+
"startIndex": 3,
|
|
33744
|
+
"endIndex": 5
|
|
33089
33745
|
},
|
|
33090
33746
|
"releaseTag": "Public",
|
|
33091
33747
|
"isProtected": false,
|
|
33092
33748
|
"overloadIndex": 1,
|
|
33093
|
-
"parameters": [
|
|
33749
|
+
"parameters": [
|
|
33750
|
+
{
|
|
33751
|
+
"parameterName": "tickAllocated",
|
|
33752
|
+
"parameterTypeTokenRange": {
|
|
33753
|
+
"startIndex": 1,
|
|
33754
|
+
"endIndex": 2
|
|
33755
|
+
},
|
|
33756
|
+
"isOptional": true
|
|
33757
|
+
}
|
|
33758
|
+
],
|
|
33094
33759
|
"isOptional": false,
|
|
33095
33760
|
"isAbstract": false,
|
|
33096
33761
|
"name": "getAllParticleEmitters"
|
|
@@ -33695,12 +34360,12 @@
|
|
|
33695
34360
|
},
|
|
33696
34361
|
{
|
|
33697
34362
|
"kind": "PropertySignature",
|
|
33698
|
-
"canonicalReference": "server!ParticleEmitterOptions#
|
|
33699
|
-
"docComment": "/**\n * The size of an emitted particle.\n */\n",
|
|
34363
|
+
"canonicalReference": "server!ParticleEmitterOptions#sizeEnd:member",
|
|
34364
|
+
"docComment": "/**\n * The size at the end of an emitted particle's lifetime.\n */\n",
|
|
33700
34365
|
"excerptTokens": [
|
|
33701
34366
|
{
|
|
33702
34367
|
"kind": "Content",
|
|
33703
|
-
"text": "
|
|
34368
|
+
"text": "sizeEnd?: "
|
|
33704
34369
|
},
|
|
33705
34370
|
{
|
|
33706
34371
|
"kind": "Content",
|
|
@@ -33714,7 +34379,7 @@
|
|
|
33714
34379
|
"isReadonly": false,
|
|
33715
34380
|
"isOptional": true,
|
|
33716
34381
|
"releaseTag": "Public",
|
|
33717
|
-
"name": "
|
|
34382
|
+
"name": "sizeEnd",
|
|
33718
34383
|
"propertyTypeTokenRange": {
|
|
33719
34384
|
"startIndex": 1,
|
|
33720
34385
|
"endIndex": 2
|
|
@@ -33722,12 +34387,12 @@
|
|
|
33722
34387
|
},
|
|
33723
34388
|
{
|
|
33724
34389
|
"kind": "PropertySignature",
|
|
33725
|
-
"canonicalReference": "server!ParticleEmitterOptions#
|
|
33726
|
-
"docComment": "/**\n * The size variance of an emitted particle.\n */\n",
|
|
34390
|
+
"canonicalReference": "server!ParticleEmitterOptions#sizeEndVariance:member",
|
|
34391
|
+
"docComment": "/**\n * The size variance at the end of an emitted particle's lifetime.\n */\n",
|
|
33727
34392
|
"excerptTokens": [
|
|
33728
34393
|
{
|
|
33729
34394
|
"kind": "Content",
|
|
33730
|
-
"text": "
|
|
34395
|
+
"text": "sizeEndVariance?: "
|
|
33731
34396
|
},
|
|
33732
34397
|
{
|
|
33733
34398
|
"kind": "Content",
|
|
@@ -33741,7 +34406,61 @@
|
|
|
33741
34406
|
"isReadonly": false,
|
|
33742
34407
|
"isOptional": true,
|
|
33743
34408
|
"releaseTag": "Public",
|
|
33744
|
-
"name": "
|
|
34409
|
+
"name": "sizeEndVariance",
|
|
34410
|
+
"propertyTypeTokenRange": {
|
|
34411
|
+
"startIndex": 1,
|
|
34412
|
+
"endIndex": 2
|
|
34413
|
+
}
|
|
34414
|
+
},
|
|
34415
|
+
{
|
|
34416
|
+
"kind": "PropertySignature",
|
|
34417
|
+
"canonicalReference": "server!ParticleEmitterOptions#sizeStart:member",
|
|
34418
|
+
"docComment": "/**\n * The size at the start of an emitted particle's lifetime.\n */\n",
|
|
34419
|
+
"excerptTokens": [
|
|
34420
|
+
{
|
|
34421
|
+
"kind": "Content",
|
|
34422
|
+
"text": "sizeStart?: "
|
|
34423
|
+
},
|
|
34424
|
+
{
|
|
34425
|
+
"kind": "Content",
|
|
34426
|
+
"text": "number"
|
|
34427
|
+
},
|
|
34428
|
+
{
|
|
34429
|
+
"kind": "Content",
|
|
34430
|
+
"text": ";"
|
|
34431
|
+
}
|
|
34432
|
+
],
|
|
34433
|
+
"isReadonly": false,
|
|
34434
|
+
"isOptional": true,
|
|
34435
|
+
"releaseTag": "Public",
|
|
34436
|
+
"name": "sizeStart",
|
|
34437
|
+
"propertyTypeTokenRange": {
|
|
34438
|
+
"startIndex": 1,
|
|
34439
|
+
"endIndex": 2
|
|
34440
|
+
}
|
|
34441
|
+
},
|
|
34442
|
+
{
|
|
34443
|
+
"kind": "PropertySignature",
|
|
34444
|
+
"canonicalReference": "server!ParticleEmitterOptions#sizeStartVariance:member",
|
|
34445
|
+
"docComment": "/**\n * The size variance at the start of an emitted particle's lifetime.\n */\n",
|
|
34446
|
+
"excerptTokens": [
|
|
34447
|
+
{
|
|
34448
|
+
"kind": "Content",
|
|
34449
|
+
"text": "sizeStartVariance?: "
|
|
34450
|
+
},
|
|
34451
|
+
{
|
|
34452
|
+
"kind": "Content",
|
|
34453
|
+
"text": "number"
|
|
34454
|
+
},
|
|
34455
|
+
{
|
|
34456
|
+
"kind": "Content",
|
|
34457
|
+
"text": ";"
|
|
34458
|
+
}
|
|
34459
|
+
],
|
|
34460
|
+
"isReadonly": false,
|
|
34461
|
+
"isOptional": true,
|
|
34462
|
+
"releaseTag": "Public",
|
|
34463
|
+
"name": "sizeStartVariance",
|
|
33745
34464
|
"propertyTypeTokenRange": {
|
|
33746
34465
|
"startIndex": 1,
|
|
33747
34466
|
"endIndex": 2
|
|
@@ -46177,11 +46896,19 @@
|
|
|
46177
46896
|
{
|
|
46178
46897
|
"kind": "Method",
|
|
46179
46898
|
"canonicalReference": "server!SceneUIManager#getAllSceneUIs:member(1)",
|
|
46180
|
-
"docComment": "/**\n * Retrieves all loaded SceneUI instances for the world.\n *\n * @returns An array of SceneUI instances.\n */\n",
|
|
46899
|
+
"docComment": "/**\n * Retrieves all loaded SceneUI instances for the world.\n *\n * @param tickAllocated - Whether to use the tick allocator to allocate the returned array of SceneUI instances. The allocated array will be collected and released at the end of the current tick if true. Only use this if you know what you're doing.\n *\n * @returns An array of SceneUI instances.\n */\n",
|
|
46181
46900
|
"excerptTokens": [
|
|
46182
46901
|
{
|
|
46183
46902
|
"kind": "Content",
|
|
46184
|
-
"text": "getAllSceneUIs(
|
|
46903
|
+
"text": "getAllSceneUIs(tickAllocated?: "
|
|
46904
|
+
},
|
|
46905
|
+
{
|
|
46906
|
+
"kind": "Content",
|
|
46907
|
+
"text": "boolean"
|
|
46908
|
+
},
|
|
46909
|
+
{
|
|
46910
|
+
"kind": "Content",
|
|
46911
|
+
"text": "): "
|
|
46185
46912
|
},
|
|
46186
46913
|
{
|
|
46187
46914
|
"kind": "Reference",
|
|
@@ -46199,13 +46926,22 @@
|
|
|
46199
46926
|
],
|
|
46200
46927
|
"isStatic": false,
|
|
46201
46928
|
"returnTypeTokenRange": {
|
|
46202
|
-
"startIndex":
|
|
46203
|
-
"endIndex":
|
|
46929
|
+
"startIndex": 3,
|
|
46930
|
+
"endIndex": 5
|
|
46204
46931
|
},
|
|
46205
46932
|
"releaseTag": "Public",
|
|
46206
46933
|
"isProtected": false,
|
|
46207
46934
|
"overloadIndex": 1,
|
|
46208
|
-
"parameters": [
|
|
46935
|
+
"parameters": [
|
|
46936
|
+
{
|
|
46937
|
+
"parameterName": "tickAllocated",
|
|
46938
|
+
"parameterTypeTokenRange": {
|
|
46939
|
+
"startIndex": 1,
|
|
46940
|
+
"endIndex": 2
|
|
46941
|
+
},
|
|
46942
|
+
"isOptional": true
|
|
46943
|
+
}
|
|
46944
|
+
],
|
|
46209
46945
|
"isOptional": false,
|
|
46210
46946
|
"isAbstract": false,
|
|
46211
46947
|
"name": "getAllSceneUIs"
|
|
@@ -48166,6 +48902,568 @@
|
|
|
48166
48902
|
"endIndex": 2
|
|
48167
48903
|
}
|
|
48168
48904
|
},
|
|
48905
|
+
{
|
|
48906
|
+
"kind": "Class",
|
|
48907
|
+
"canonicalReference": "server!TickAllocator:class",
|
|
48908
|
+
"docComment": "/**\n * High-performance tick-scoped allocator for temporary objects, arrays, and buffers. All allocations are automatically bulk-released when reset() is called.\n *\n * @remarks\n *\n * TickAllocator maintains separate pools for different data types and tracks all allocations made during a tick cycle. Objects are reused across ticks to eliminate garbage collection overhead in hot paths like network synchronization.\n *\n * @example\n * ```typescript\n * // Allocate during tick\n * const position = tickAllocator.getArray3Number();\n * const rotation = tickAllocator.getArray4Number();\n * const data = tickAllocator.getObject<EntitySchema>();\n *\n * // At end of tick - bulk release everything\n * tickAllocator.reset();\n * ```\n *\n * @public\n */\n",
|
|
48909
|
+
"excerptTokens": [
|
|
48910
|
+
{
|
|
48911
|
+
"kind": "Content",
|
|
48912
|
+
"text": "export default class TickAllocator "
|
|
48913
|
+
}
|
|
48914
|
+
],
|
|
48915
|
+
"fileUrlPath": "src/shared/classes/TickAllocator.ts",
|
|
48916
|
+
"releaseTag": "Public",
|
|
48917
|
+
"isAbstract": false,
|
|
48918
|
+
"name": "TickAllocator",
|
|
48919
|
+
"preserveMemberOrder": false,
|
|
48920
|
+
"members": [
|
|
48921
|
+
{
|
|
48922
|
+
"kind": "Method",
|
|
48923
|
+
"canonicalReference": "server!TickAllocator#getArray:member(1)",
|
|
48924
|
+
"docComment": "/**\n * Gets a generic array from the pool. Array is reset to empty state and ready for use.\n *\n * @typeParam T - The array type.\n *\n * @returns A reusable array.\n */\n",
|
|
48925
|
+
"excerptTokens": [
|
|
48926
|
+
{
|
|
48927
|
+
"kind": "Content",
|
|
48928
|
+
"text": "getArray<T extends "
|
|
48929
|
+
},
|
|
48930
|
+
{
|
|
48931
|
+
"kind": "Content",
|
|
48932
|
+
"text": "unknown[]"
|
|
48933
|
+
},
|
|
48934
|
+
{
|
|
48935
|
+
"kind": "Content",
|
|
48936
|
+
"text": " = "
|
|
48937
|
+
},
|
|
48938
|
+
{
|
|
48939
|
+
"kind": "Content",
|
|
48940
|
+
"text": "unknown[]"
|
|
48941
|
+
},
|
|
48942
|
+
{
|
|
48943
|
+
"kind": "Content",
|
|
48944
|
+
"text": ">(copyFromA?: "
|
|
48945
|
+
},
|
|
48946
|
+
{
|
|
48947
|
+
"kind": "Reference",
|
|
48948
|
+
"text": "Iterable",
|
|
48949
|
+
"canonicalReference": "!Iterable:interface"
|
|
48950
|
+
},
|
|
48951
|
+
{
|
|
48952
|
+
"kind": "Content",
|
|
48953
|
+
"text": "<unknown>"
|
|
48954
|
+
},
|
|
48955
|
+
{
|
|
48956
|
+
"kind": "Content",
|
|
48957
|
+
"text": ", copyFromB?: "
|
|
48958
|
+
},
|
|
48959
|
+
{
|
|
48960
|
+
"kind": "Reference",
|
|
48961
|
+
"text": "Iterable",
|
|
48962
|
+
"canonicalReference": "!Iterable:interface"
|
|
48963
|
+
},
|
|
48964
|
+
{
|
|
48965
|
+
"kind": "Content",
|
|
48966
|
+
"text": "<unknown>"
|
|
48967
|
+
},
|
|
48968
|
+
{
|
|
48969
|
+
"kind": "Content",
|
|
48970
|
+
"text": "): "
|
|
48971
|
+
},
|
|
48972
|
+
{
|
|
48973
|
+
"kind": "Content",
|
|
48974
|
+
"text": "T"
|
|
48975
|
+
},
|
|
48976
|
+
{
|
|
48977
|
+
"kind": "Content",
|
|
48978
|
+
"text": ";"
|
|
48979
|
+
}
|
|
48980
|
+
],
|
|
48981
|
+
"typeParameters": [
|
|
48982
|
+
{
|
|
48983
|
+
"typeParameterName": "T",
|
|
48984
|
+
"constraintTokenRange": {
|
|
48985
|
+
"startIndex": 1,
|
|
48986
|
+
"endIndex": 2
|
|
48987
|
+
},
|
|
48988
|
+
"defaultTypeTokenRange": {
|
|
48989
|
+
"startIndex": 3,
|
|
48990
|
+
"endIndex": 4
|
|
48991
|
+
}
|
|
48992
|
+
}
|
|
48993
|
+
],
|
|
48994
|
+
"isStatic": false,
|
|
48995
|
+
"returnTypeTokenRange": {
|
|
48996
|
+
"startIndex": 11,
|
|
48997
|
+
"endIndex": 12
|
|
48998
|
+
},
|
|
48999
|
+
"releaseTag": "Public",
|
|
49000
|
+
"isProtected": false,
|
|
49001
|
+
"overloadIndex": 1,
|
|
49002
|
+
"parameters": [
|
|
49003
|
+
{
|
|
49004
|
+
"parameterName": "copyFromA",
|
|
49005
|
+
"parameterTypeTokenRange": {
|
|
49006
|
+
"startIndex": 5,
|
|
49007
|
+
"endIndex": 7
|
|
49008
|
+
},
|
|
49009
|
+
"isOptional": true
|
|
49010
|
+
},
|
|
49011
|
+
{
|
|
49012
|
+
"parameterName": "copyFromB",
|
|
49013
|
+
"parameterTypeTokenRange": {
|
|
49014
|
+
"startIndex": 8,
|
|
49015
|
+
"endIndex": 10
|
|
49016
|
+
},
|
|
49017
|
+
"isOptional": true
|
|
49018
|
+
}
|
|
49019
|
+
],
|
|
49020
|
+
"isOptional": false,
|
|
49021
|
+
"isAbstract": false,
|
|
49022
|
+
"name": "getArray"
|
|
49023
|
+
},
|
|
49024
|
+
{
|
|
49025
|
+
"kind": "Method",
|
|
49026
|
+
"canonicalReference": "server!TickAllocator#getArray3Number:member(1)",
|
|
49027
|
+
"docComment": "/**\n * Gets a 3-element number array from the pool. Array is reset to [0, 0, 0] and ready for use.\n *\n * @returns A reusable 3-element array.\n */\n",
|
|
49028
|
+
"excerptTokens": [
|
|
49029
|
+
{
|
|
49030
|
+
"kind": "Content",
|
|
49031
|
+
"text": "getArray3Number(copyFrom?: "
|
|
49032
|
+
},
|
|
49033
|
+
{
|
|
49034
|
+
"kind": "Reference",
|
|
49035
|
+
"text": "Array3Number",
|
|
49036
|
+
"canonicalReference": "server!Array3Number:type"
|
|
49037
|
+
},
|
|
49038
|
+
{
|
|
49039
|
+
"kind": "Content",
|
|
49040
|
+
"text": " | "
|
|
49041
|
+
},
|
|
49042
|
+
{
|
|
49043
|
+
"kind": "Reference",
|
|
49044
|
+
"text": "Set",
|
|
49045
|
+
"canonicalReference": "!Set:interface"
|
|
49046
|
+
},
|
|
49047
|
+
{
|
|
49048
|
+
"kind": "Content",
|
|
49049
|
+
"text": "<number>"
|
|
49050
|
+
},
|
|
49051
|
+
{
|
|
49052
|
+
"kind": "Content",
|
|
49053
|
+
"text": "): "
|
|
49054
|
+
},
|
|
49055
|
+
{
|
|
49056
|
+
"kind": "Reference",
|
|
49057
|
+
"text": "Array3Number",
|
|
49058
|
+
"canonicalReference": "server!Array3Number:type"
|
|
49059
|
+
},
|
|
49060
|
+
{
|
|
49061
|
+
"kind": "Content",
|
|
49062
|
+
"text": ";"
|
|
49063
|
+
}
|
|
49064
|
+
],
|
|
49065
|
+
"isStatic": false,
|
|
49066
|
+
"returnTypeTokenRange": {
|
|
49067
|
+
"startIndex": 6,
|
|
49068
|
+
"endIndex": 7
|
|
49069
|
+
},
|
|
49070
|
+
"releaseTag": "Public",
|
|
49071
|
+
"isProtected": false,
|
|
49072
|
+
"overloadIndex": 1,
|
|
49073
|
+
"parameters": [
|
|
49074
|
+
{
|
|
49075
|
+
"parameterName": "copyFrom",
|
|
49076
|
+
"parameterTypeTokenRange": {
|
|
49077
|
+
"startIndex": 1,
|
|
49078
|
+
"endIndex": 5
|
|
49079
|
+
},
|
|
49080
|
+
"isOptional": true
|
|
49081
|
+
}
|
|
49082
|
+
],
|
|
49083
|
+
"isOptional": false,
|
|
49084
|
+
"isAbstract": false,
|
|
49085
|
+
"name": "getArray3Number"
|
|
49086
|
+
},
|
|
49087
|
+
{
|
|
49088
|
+
"kind": "Method",
|
|
49089
|
+
"canonicalReference": "server!TickAllocator#getArray4Number:member(1)",
|
|
49090
|
+
"docComment": "/**\n * Gets a 4-element number array from the pool. Array is reset to [0, 0, 0, 0] and ready for use.\n *\n * @returns A reusable 4-element array.\n */\n",
|
|
49091
|
+
"excerptTokens": [
|
|
49092
|
+
{
|
|
49093
|
+
"kind": "Content",
|
|
49094
|
+
"text": "getArray4Number(copyFrom?: "
|
|
49095
|
+
},
|
|
49096
|
+
{
|
|
49097
|
+
"kind": "Reference",
|
|
49098
|
+
"text": "Array4Number",
|
|
49099
|
+
"canonicalReference": "server!Array4Number:type"
|
|
49100
|
+
},
|
|
49101
|
+
{
|
|
49102
|
+
"kind": "Content",
|
|
49103
|
+
"text": " | "
|
|
49104
|
+
},
|
|
49105
|
+
{
|
|
49106
|
+
"kind": "Reference",
|
|
49107
|
+
"text": "Set",
|
|
49108
|
+
"canonicalReference": "!Set:interface"
|
|
49109
|
+
},
|
|
49110
|
+
{
|
|
49111
|
+
"kind": "Content",
|
|
49112
|
+
"text": "<number>"
|
|
49113
|
+
},
|
|
49114
|
+
{
|
|
49115
|
+
"kind": "Content",
|
|
49116
|
+
"text": "): "
|
|
49117
|
+
},
|
|
49118
|
+
{
|
|
49119
|
+
"kind": "Reference",
|
|
49120
|
+
"text": "Array4Number",
|
|
49121
|
+
"canonicalReference": "server!Array4Number:type"
|
|
49122
|
+
},
|
|
49123
|
+
{
|
|
49124
|
+
"kind": "Content",
|
|
49125
|
+
"text": ";"
|
|
49126
|
+
}
|
|
49127
|
+
],
|
|
49128
|
+
"isStatic": false,
|
|
49129
|
+
"returnTypeTokenRange": {
|
|
49130
|
+
"startIndex": 6,
|
|
49131
|
+
"endIndex": 7
|
|
49132
|
+
},
|
|
49133
|
+
"releaseTag": "Public",
|
|
49134
|
+
"isProtected": false,
|
|
49135
|
+
"overloadIndex": 1,
|
|
49136
|
+
"parameters": [
|
|
49137
|
+
{
|
|
49138
|
+
"parameterName": "copyFrom",
|
|
49139
|
+
"parameterTypeTokenRange": {
|
|
49140
|
+
"startIndex": 1,
|
|
49141
|
+
"endIndex": 5
|
|
49142
|
+
},
|
|
49143
|
+
"isOptional": true
|
|
49144
|
+
}
|
|
49145
|
+
],
|
|
49146
|
+
"isOptional": false,
|
|
49147
|
+
"isAbstract": false,
|
|
49148
|
+
"name": "getArray4Number"
|
|
49149
|
+
},
|
|
49150
|
+
{
|
|
49151
|
+
"kind": "Method",
|
|
49152
|
+
"canonicalReference": "server!TickAllocator#getObject:member(1)",
|
|
49153
|
+
"docComment": "/**\n * Gets a plain object from the pool. Object is reset to empty state and ready for use.\n *\n * @typeParam T - The type interface for the object.\n *\n * @returns A reusable plain object.\n */\n",
|
|
49154
|
+
"excerptTokens": [
|
|
49155
|
+
{
|
|
49156
|
+
"kind": "Content",
|
|
49157
|
+
"text": "getObject<T extends "
|
|
49158
|
+
},
|
|
49159
|
+
{
|
|
49160
|
+
"kind": "Reference",
|
|
49161
|
+
"text": "Record",
|
|
49162
|
+
"canonicalReference": "!Record:type"
|
|
49163
|
+
},
|
|
49164
|
+
{
|
|
49165
|
+
"kind": "Content",
|
|
49166
|
+
"text": "<string, unknown>"
|
|
49167
|
+
},
|
|
49168
|
+
{
|
|
49169
|
+
"kind": "Content",
|
|
49170
|
+
"text": " = "
|
|
49171
|
+
},
|
|
49172
|
+
{
|
|
49173
|
+
"kind": "Reference",
|
|
49174
|
+
"text": "Record",
|
|
49175
|
+
"canonicalReference": "!Record:type"
|
|
49176
|
+
},
|
|
49177
|
+
{
|
|
49178
|
+
"kind": "Content",
|
|
49179
|
+
"text": "<string, unknown>"
|
|
49180
|
+
},
|
|
49181
|
+
{
|
|
49182
|
+
"kind": "Content",
|
|
49183
|
+
"text": ">(copyFromA?: "
|
|
49184
|
+
},
|
|
49185
|
+
{
|
|
49186
|
+
"kind": "Content",
|
|
49187
|
+
"text": "T"
|
|
49188
|
+
},
|
|
49189
|
+
{
|
|
49190
|
+
"kind": "Content",
|
|
49191
|
+
"text": ", copyFromB?: "
|
|
49192
|
+
},
|
|
49193
|
+
{
|
|
49194
|
+
"kind": "Content",
|
|
49195
|
+
"text": "T"
|
|
49196
|
+
},
|
|
49197
|
+
{
|
|
49198
|
+
"kind": "Content",
|
|
49199
|
+
"text": "): "
|
|
49200
|
+
},
|
|
49201
|
+
{
|
|
49202
|
+
"kind": "Content",
|
|
49203
|
+
"text": "T"
|
|
49204
|
+
},
|
|
49205
|
+
{
|
|
49206
|
+
"kind": "Content",
|
|
49207
|
+
"text": ";"
|
|
49208
|
+
}
|
|
49209
|
+
],
|
|
49210
|
+
"typeParameters": [
|
|
49211
|
+
{
|
|
49212
|
+
"typeParameterName": "T",
|
|
49213
|
+
"constraintTokenRange": {
|
|
49214
|
+
"startIndex": 1,
|
|
49215
|
+
"endIndex": 3
|
|
49216
|
+
},
|
|
49217
|
+
"defaultTypeTokenRange": {
|
|
49218
|
+
"startIndex": 4,
|
|
49219
|
+
"endIndex": 6
|
|
49220
|
+
}
|
|
49221
|
+
}
|
|
49222
|
+
],
|
|
49223
|
+
"isStatic": false,
|
|
49224
|
+
"returnTypeTokenRange": {
|
|
49225
|
+
"startIndex": 11,
|
|
49226
|
+
"endIndex": 12
|
|
49227
|
+
},
|
|
49228
|
+
"releaseTag": "Public",
|
|
49229
|
+
"isProtected": false,
|
|
49230
|
+
"overloadIndex": 1,
|
|
49231
|
+
"parameters": [
|
|
49232
|
+
{
|
|
49233
|
+
"parameterName": "copyFromA",
|
|
49234
|
+
"parameterTypeTokenRange": {
|
|
49235
|
+
"startIndex": 7,
|
|
49236
|
+
"endIndex": 8
|
|
49237
|
+
},
|
|
49238
|
+
"isOptional": true
|
|
49239
|
+
},
|
|
49240
|
+
{
|
|
49241
|
+
"parameterName": "copyFromB",
|
|
49242
|
+
"parameterTypeTokenRange": {
|
|
49243
|
+
"startIndex": 9,
|
|
49244
|
+
"endIndex": 10
|
|
49245
|
+
},
|
|
49246
|
+
"isOptional": true
|
|
49247
|
+
}
|
|
49248
|
+
],
|
|
49249
|
+
"isOptional": false,
|
|
49250
|
+
"isAbstract": false,
|
|
49251
|
+
"name": "getObject"
|
|
49252
|
+
},
|
|
49253
|
+
{
|
|
49254
|
+
"kind": "Method",
|
|
49255
|
+
"canonicalReference": "server!TickAllocator#getSet:member(1)",
|
|
49256
|
+
"docComment": "/**\n * Gets a set from the pool. Set is reset to empty state and ready for use.\n *\n * @typeParam T - The type of the set.\n *\n * @returns A reusable set.\n */\n",
|
|
49257
|
+
"excerptTokens": [
|
|
49258
|
+
{
|
|
49259
|
+
"kind": "Content",
|
|
49260
|
+
"text": "getSet<T>(copyFromA?: "
|
|
49261
|
+
},
|
|
49262
|
+
{
|
|
49263
|
+
"kind": "Reference",
|
|
49264
|
+
"text": "Set",
|
|
49265
|
+
"canonicalReference": "!Set:interface"
|
|
49266
|
+
},
|
|
49267
|
+
{
|
|
49268
|
+
"kind": "Content",
|
|
49269
|
+
"text": "<T> | T[]"
|
|
49270
|
+
},
|
|
49271
|
+
{
|
|
49272
|
+
"kind": "Content",
|
|
49273
|
+
"text": ", copyFromB?: "
|
|
49274
|
+
},
|
|
49275
|
+
{
|
|
49276
|
+
"kind": "Reference",
|
|
49277
|
+
"text": "Set",
|
|
49278
|
+
"canonicalReference": "!Set:interface"
|
|
49279
|
+
},
|
|
49280
|
+
{
|
|
49281
|
+
"kind": "Content",
|
|
49282
|
+
"text": "<T> | T[]"
|
|
49283
|
+
},
|
|
49284
|
+
{
|
|
49285
|
+
"kind": "Content",
|
|
49286
|
+
"text": "): "
|
|
49287
|
+
},
|
|
49288
|
+
{
|
|
49289
|
+
"kind": "Reference",
|
|
49290
|
+
"text": "Set",
|
|
49291
|
+
"canonicalReference": "!Set:interface"
|
|
49292
|
+
},
|
|
49293
|
+
{
|
|
49294
|
+
"kind": "Content",
|
|
49295
|
+
"text": "<T>"
|
|
49296
|
+
},
|
|
49297
|
+
{
|
|
49298
|
+
"kind": "Content",
|
|
49299
|
+
"text": ";"
|
|
49300
|
+
}
|
|
49301
|
+
],
|
|
49302
|
+
"typeParameters": [
|
|
49303
|
+
{
|
|
49304
|
+
"typeParameterName": "T",
|
|
49305
|
+
"constraintTokenRange": {
|
|
49306
|
+
"startIndex": 0,
|
|
49307
|
+
"endIndex": 0
|
|
49308
|
+
},
|
|
49309
|
+
"defaultTypeTokenRange": {
|
|
49310
|
+
"startIndex": 0,
|
|
49311
|
+
"endIndex": 0
|
|
49312
|
+
}
|
|
49313
|
+
}
|
|
49314
|
+
],
|
|
49315
|
+
"isStatic": false,
|
|
49316
|
+
"returnTypeTokenRange": {
|
|
49317
|
+
"startIndex": 7,
|
|
49318
|
+
"endIndex": 9
|
|
49319
|
+
},
|
|
49320
|
+
"releaseTag": "Public",
|
|
49321
|
+
"isProtected": false,
|
|
49322
|
+
"overloadIndex": 1,
|
|
49323
|
+
"parameters": [
|
|
49324
|
+
{
|
|
49325
|
+
"parameterName": "copyFromA",
|
|
49326
|
+
"parameterTypeTokenRange": {
|
|
49327
|
+
"startIndex": 1,
|
|
49328
|
+
"endIndex": 3
|
|
49329
|
+
},
|
|
49330
|
+
"isOptional": true
|
|
49331
|
+
},
|
|
49332
|
+
{
|
|
49333
|
+
"parameterName": "copyFromB",
|
|
49334
|
+
"parameterTypeTokenRange": {
|
|
49335
|
+
"startIndex": 4,
|
|
49336
|
+
"endIndex": 6
|
|
49337
|
+
},
|
|
49338
|
+
"isOptional": true
|
|
49339
|
+
}
|
|
49340
|
+
],
|
|
49341
|
+
"isOptional": false,
|
|
49342
|
+
"isAbstract": false,
|
|
49343
|
+
"name": "getSet"
|
|
49344
|
+
},
|
|
49345
|
+
{
|
|
49346
|
+
"kind": "Method",
|
|
49347
|
+
"canonicalReference": "server!TickAllocator#map:member(1)",
|
|
49348
|
+
"docComment": "/**\n * Maps an array to a new array using a callback function.\n *\n * @param array - The array to map.\n *\n * @param callback - The callback function to map the array.\n *\n * @typeParam T - The type of the array.\n *\n * @typeParam U - The type of the resulting array.\n *\n * @returns A new array with the mapped values.\n */\n",
|
|
49349
|
+
"excerptTokens": [
|
|
49350
|
+
{
|
|
49351
|
+
"kind": "Content",
|
|
49352
|
+
"text": "map<T, U>(array: "
|
|
49353
|
+
},
|
|
49354
|
+
{
|
|
49355
|
+
"kind": "Content",
|
|
49356
|
+
"text": "T[]"
|
|
49357
|
+
},
|
|
49358
|
+
{
|
|
49359
|
+
"kind": "Content",
|
|
49360
|
+
"text": ", callback: "
|
|
49361
|
+
},
|
|
49362
|
+
{
|
|
49363
|
+
"kind": "Content",
|
|
49364
|
+
"text": "(value: T, index: number, array: T[]) => U"
|
|
49365
|
+
},
|
|
49366
|
+
{
|
|
49367
|
+
"kind": "Content",
|
|
49368
|
+
"text": "): "
|
|
49369
|
+
},
|
|
49370
|
+
{
|
|
49371
|
+
"kind": "Content",
|
|
49372
|
+
"text": "U[]"
|
|
49373
|
+
},
|
|
49374
|
+
{
|
|
49375
|
+
"kind": "Content",
|
|
49376
|
+
"text": ";"
|
|
49377
|
+
}
|
|
49378
|
+
],
|
|
49379
|
+
"typeParameters": [
|
|
49380
|
+
{
|
|
49381
|
+
"typeParameterName": "T",
|
|
49382
|
+
"constraintTokenRange": {
|
|
49383
|
+
"startIndex": 0,
|
|
49384
|
+
"endIndex": 0
|
|
49385
|
+
},
|
|
49386
|
+
"defaultTypeTokenRange": {
|
|
49387
|
+
"startIndex": 0,
|
|
49388
|
+
"endIndex": 0
|
|
49389
|
+
}
|
|
49390
|
+
},
|
|
49391
|
+
{
|
|
49392
|
+
"typeParameterName": "U",
|
|
49393
|
+
"constraintTokenRange": {
|
|
49394
|
+
"startIndex": 0,
|
|
49395
|
+
"endIndex": 0
|
|
49396
|
+
},
|
|
49397
|
+
"defaultTypeTokenRange": {
|
|
49398
|
+
"startIndex": 0,
|
|
49399
|
+
"endIndex": 0
|
|
49400
|
+
}
|
|
49401
|
+
}
|
|
49402
|
+
],
|
|
49403
|
+
"isStatic": false,
|
|
49404
|
+
"returnTypeTokenRange": {
|
|
49405
|
+
"startIndex": 5,
|
|
49406
|
+
"endIndex": 6
|
|
49407
|
+
},
|
|
49408
|
+
"releaseTag": "Public",
|
|
49409
|
+
"isProtected": false,
|
|
49410
|
+
"overloadIndex": 1,
|
|
49411
|
+
"parameters": [
|
|
49412
|
+
{
|
|
49413
|
+
"parameterName": "array",
|
|
49414
|
+
"parameterTypeTokenRange": {
|
|
49415
|
+
"startIndex": 1,
|
|
49416
|
+
"endIndex": 2
|
|
49417
|
+
},
|
|
49418
|
+
"isOptional": false
|
|
49419
|
+
},
|
|
49420
|
+
{
|
|
49421
|
+
"parameterName": "callback",
|
|
49422
|
+
"parameterTypeTokenRange": {
|
|
49423
|
+
"startIndex": 3,
|
|
49424
|
+
"endIndex": 4
|
|
49425
|
+
},
|
|
49426
|
+
"isOptional": false
|
|
49427
|
+
}
|
|
49428
|
+
],
|
|
49429
|
+
"isOptional": false,
|
|
49430
|
+
"isAbstract": false,
|
|
49431
|
+
"name": "map"
|
|
49432
|
+
},
|
|
49433
|
+
{
|
|
49434
|
+
"kind": "Method",
|
|
49435
|
+
"canonicalReference": "server!TickAllocator#reset:member(1)",
|
|
49436
|
+
"docComment": "/**\n * Releases all allocated objects back to their respective pools. This is intended to be called at the end of a tick.\n */\n",
|
|
49437
|
+
"excerptTokens": [
|
|
49438
|
+
{
|
|
49439
|
+
"kind": "Content",
|
|
49440
|
+
"text": "reset(): "
|
|
49441
|
+
},
|
|
49442
|
+
{
|
|
49443
|
+
"kind": "Content",
|
|
49444
|
+
"text": "void"
|
|
49445
|
+
},
|
|
49446
|
+
{
|
|
49447
|
+
"kind": "Content",
|
|
49448
|
+
"text": ";"
|
|
49449
|
+
}
|
|
49450
|
+
],
|
|
49451
|
+
"isStatic": false,
|
|
49452
|
+
"returnTypeTokenRange": {
|
|
49453
|
+
"startIndex": 1,
|
|
49454
|
+
"endIndex": 2
|
|
49455
|
+
},
|
|
49456
|
+
"releaseTag": "Public",
|
|
49457
|
+
"isProtected": false,
|
|
49458
|
+
"overloadIndex": 1,
|
|
49459
|
+
"parameters": [],
|
|
49460
|
+
"isOptional": false,
|
|
49461
|
+
"isAbstract": false,
|
|
49462
|
+
"name": "reset"
|
|
49463
|
+
}
|
|
49464
|
+
],
|
|
49465
|
+
"implementsTokenRanges": []
|
|
49466
|
+
},
|
|
48169
49467
|
{
|
|
48170
49468
|
"kind": "Interface",
|
|
48171
49469
|
"canonicalReference": "server!TrimeshColliderOptions:interface",
|
|
@@ -53724,6 +55022,37 @@
|
|
|
53724
55022
|
"isStatic": false,
|
|
53725
55023
|
"isProtected": false,
|
|
53726
55024
|
"isAbstract": false
|
|
55025
|
+
},
|
|
55026
|
+
{
|
|
55027
|
+
"kind": "Property",
|
|
55028
|
+
"canonicalReference": "server!World#tickAllocator:member",
|
|
55029
|
+
"docComment": "/**\n * The tick allocator for the world.\n */\n",
|
|
55030
|
+
"excerptTokens": [
|
|
55031
|
+
{
|
|
55032
|
+
"kind": "Content",
|
|
55033
|
+
"text": "get tickAllocator(): "
|
|
55034
|
+
},
|
|
55035
|
+
{
|
|
55036
|
+
"kind": "Reference",
|
|
55037
|
+
"text": "TickAllocator",
|
|
55038
|
+
"canonicalReference": "server!TickAllocator:class"
|
|
55039
|
+
},
|
|
55040
|
+
{
|
|
55041
|
+
"kind": "Content",
|
|
55042
|
+
"text": ";"
|
|
55043
|
+
}
|
|
55044
|
+
],
|
|
55045
|
+
"isReadonly": true,
|
|
55046
|
+
"isOptional": false,
|
|
55047
|
+
"releaseTag": "Public",
|
|
55048
|
+
"name": "tickAllocator",
|
|
55049
|
+
"propertyTypeTokenRange": {
|
|
55050
|
+
"startIndex": 1,
|
|
55051
|
+
"endIndex": 2
|
|
55052
|
+
},
|
|
55053
|
+
"isStatic": false,
|
|
55054
|
+
"isProtected": false,
|
|
55055
|
+
"isAbstract": false
|
|
53727
55056
|
}
|
|
53728
55057
|
],
|
|
53729
55058
|
"extendsTokenRange": {
|