hytopia 0.8.5 → 0.8.6-dev2

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.
Files changed (44) hide show
  1. package/bun-server.mjs +171 -171
  2. package/docs/server.audiomanager.getallaudios.md +1 -38
  3. package/docs/server.audiomanager.getallentityattachedaudios.md +2 -18
  4. package/docs/server.audiomanager.getallloopedaudios.md +1 -38
  5. package/docs/server.audiomanager.getalloneshotaudios.md +1 -38
  6. package/docs/server.audiomanager.md +4 -4
  7. package/docs/server.blocktype._constructor_.md +1 -15
  8. package/docs/server.blocktype.md +1 -22
  9. package/docs/server.blocktyperegistry.getallblocktypes.md +1 -38
  10. package/docs/server.blocktyperegistry.md +1 -1
  11. package/docs/server.chunk._constructor_.md +1 -15
  12. package/docs/server.chunk.md +1 -22
  13. package/docs/server.chunklattice.getallchunks.md +1 -38
  14. package/docs/server.chunklattice.md +1 -22
  15. package/docs/server.entitymanager.getallentities.md +1 -38
  16. package/docs/server.entitymanager.md +1 -1
  17. package/docs/server.lightmanager.getalllights.md +1 -38
  18. package/docs/server.lightmanager.md +1 -1
  19. package/docs/server.md +0 -33
  20. package/docs/server.particleemittermanager.getallparticleemitters.md +1 -38
  21. package/docs/server.particleemittermanager.md +1 -1
  22. package/docs/server.sceneuimanager.getallsceneuis.md +1 -38
  23. package/docs/server.sceneuimanager.md +1 -1
  24. package/docs/server.telemetryspanoperation.md +0 -14
  25. package/docs/server.world.md +0 -21
  26. package/node-server.mjs +167 -167
  27. package/package.json +1 -1
  28. package/server.api.json +52 -1091
  29. package/server.d.ts +30 -181
  30. package/docs/server.array3number.md +0 -13
  31. package/docs/server.array4number.md +0 -13
  32. package/docs/server.blocktype.blocktyperegistry.md +0 -13
  33. package/docs/server.chunk.chunklattice.md +0 -13
  34. package/docs/server.chunklattice.world.md +0 -13
  35. package/docs/server.tickallocator.filter.md +0 -72
  36. package/docs/server.tickallocator.getarray.md +0 -72
  37. package/docs/server.tickallocator.getarray3number.md +0 -56
  38. package/docs/server.tickallocator.getarray4number.md +0 -56
  39. package/docs/server.tickallocator.getobject.md +0 -72
  40. package/docs/server.tickallocator.getset.md +0 -72
  41. package/docs/server.tickallocator.map.md +0 -72
  42. package/docs/server.tickallocator.md +0 -163
  43. package/docs/server.tickallocator.reset.md +0 -17
  44. package/docs/server.world.tickallocator.md +0 -13
package/server.api.json CHANGED
@@ -173,58 +173,6 @@
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
- },
228
176
  {
229
177
  "kind": "Class",
230
178
  "canonicalReference": "server!Audio:class",
@@ -2139,19 +2087,11 @@
2139
2087
  {
2140
2088
  "kind": "Method",
2141
2089
  "canonicalReference": "server!AudioManager#getAllAudios:member(1)",
2142
- "docComment": "/**\n * Retrieves all loaded audio instances for the world.\n *\n * @param tickAllocated - If true, uses the tick allocator and frees the allocated array at the end of the current tick. false by default.\n *\n * @returns An array of audio instances.\n */\n",
2090
+ "docComment": "/**\n * Retrieves all loaded audio instances for the world.\n *\n * @returns An array of audio instances.\n */\n",
2143
2091
  "excerptTokens": [
2144
2092
  {
2145
2093
  "kind": "Content",
2146
- "text": "getAllAudios(tickAllocated?: "
2147
- },
2148
- {
2149
- "kind": "Content",
2150
- "text": "boolean"
2151
- },
2152
- {
2153
- "kind": "Content",
2154
- "text": "): "
2094
+ "text": "getAllAudios(): "
2155
2095
  },
2156
2096
  {
2157
2097
  "kind": "Reference",
@@ -2169,22 +2109,13 @@
2169
2109
  ],
2170
2110
  "isStatic": false,
2171
2111
  "returnTypeTokenRange": {
2172
- "startIndex": 3,
2173
- "endIndex": 5
2112
+ "startIndex": 1,
2113
+ "endIndex": 3
2174
2114
  },
2175
2115
  "releaseTag": "Public",
2176
2116
  "isProtected": false,
2177
2117
  "overloadIndex": 1,
2178
- "parameters": [
2179
- {
2180
- "parameterName": "tickAllocated",
2181
- "parameterTypeTokenRange": {
2182
- "startIndex": 1,
2183
- "endIndex": 2
2184
- },
2185
- "isOptional": true
2186
- }
2187
- ],
2118
+ "parameters": [],
2188
2119
  "isOptional": false,
2189
2120
  "isAbstract": false,
2190
2121
  "name": "getAllAudios"
@@ -2192,7 +2123,7 @@
2192
2123
  {
2193
2124
  "kind": "Method",
2194
2125
  "canonicalReference": "server!AudioManager#getAllEntityAttachedAudios:member(1)",
2195
- "docComment": "/**\n * Retrieves all loaded audio instances attached to a specific entity.\n *\n * @param entity - The entity to get attached audio instances for.\n *\n * @param tickAllocated - If true, uses the tick allocator and frees the allocated array at the end of the current tick. false by default.\n *\n * @returns An array of audio instances.\n */\n",
2126
+ "docComment": "/**\n * Retrieves all loaded audio instances attached to a specific entity.\n *\n * @param entity - The entity to get attached audio instances for. the allocated array at the end of the current tick. false by default.\n *\n * @returns An array of audio instances.\n */\n",
2196
2127
  "excerptTokens": [
2197
2128
  {
2198
2129
  "kind": "Content",
@@ -2203,14 +2134,6 @@
2203
2134
  "text": "Entity",
2204
2135
  "canonicalReference": "server!Entity:class"
2205
2136
  },
2206
- {
2207
- "kind": "Content",
2208
- "text": ", tickAllocated?: "
2209
- },
2210
- {
2211
- "kind": "Content",
2212
- "text": "boolean"
2213
- },
2214
2137
  {
2215
2138
  "kind": "Content",
2216
2139
  "text": "): "
@@ -2231,8 +2154,8 @@
2231
2154
  ],
2232
2155
  "isStatic": false,
2233
2156
  "returnTypeTokenRange": {
2234
- "startIndex": 5,
2235
- "endIndex": 7
2157
+ "startIndex": 3,
2158
+ "endIndex": 5
2236
2159
  },
2237
2160
  "releaseTag": "Public",
2238
2161
  "isProtected": false,
@@ -2245,14 +2168,6 @@
2245
2168
  "endIndex": 2
2246
2169
  },
2247
2170
  "isOptional": false
2248
- },
2249
- {
2250
- "parameterName": "tickAllocated",
2251
- "parameterTypeTokenRange": {
2252
- "startIndex": 3,
2253
- "endIndex": 4
2254
- },
2255
- "isOptional": true
2256
2171
  }
2257
2172
  ],
2258
2173
  "isOptional": false,
@@ -2262,19 +2177,11 @@
2262
2177
  {
2263
2178
  "kind": "Method",
2264
2179
  "canonicalReference": "server!AudioManager#getAllLoopedAudios:member(1)",
2265
- "docComment": "/**\n * Retrieves all looped audio instances for the world.\n *\n * @param tickAllocated - If true, uses the tick allocator and frees the allocated array at the end of the current tick. false by default.\n *\n * @returns An array of audio instances.\n */\n",
2180
+ "docComment": "/**\n * Retrieves all looped audio instances for the world.\n *\n * @returns An array of audio instances.\n */\n",
2266
2181
  "excerptTokens": [
2267
2182
  {
2268
2183
  "kind": "Content",
2269
- "text": "getAllLoopedAudios(tickAllocated?: "
2270
- },
2271
- {
2272
- "kind": "Content",
2273
- "text": "boolean"
2274
- },
2275
- {
2276
- "kind": "Content",
2277
- "text": "): "
2184
+ "text": "getAllLoopedAudios(): "
2278
2185
  },
2279
2186
  {
2280
2187
  "kind": "Reference",
@@ -2292,22 +2199,13 @@
2292
2199
  ],
2293
2200
  "isStatic": false,
2294
2201
  "returnTypeTokenRange": {
2295
- "startIndex": 3,
2296
- "endIndex": 5
2202
+ "startIndex": 1,
2203
+ "endIndex": 3
2297
2204
  },
2298
2205
  "releaseTag": "Public",
2299
2206
  "isProtected": false,
2300
2207
  "overloadIndex": 1,
2301
- "parameters": [
2302
- {
2303
- "parameterName": "tickAllocated",
2304
- "parameterTypeTokenRange": {
2305
- "startIndex": 1,
2306
- "endIndex": 2
2307
- },
2308
- "isOptional": true
2309
- }
2310
- ],
2208
+ "parameters": [],
2311
2209
  "isOptional": false,
2312
2210
  "isAbstract": false,
2313
2211
  "name": "getAllLoopedAudios"
@@ -2315,19 +2213,11 @@
2315
2213
  {
2316
2214
  "kind": "Method",
2317
2215
  "canonicalReference": "server!AudioManager#getAllOneshotAudios:member(1)",
2318
- "docComment": "/**\n * Retrieves all oneshot (non-looped) audio instances for the world.\n *\n * @param tickAllocated - If true, uses the tick allocator and frees the allocated array at the end of the current tick. false by default.\n *\n * @returns An array of audio instances.\n */\n",
2216
+ "docComment": "/**\n * Retrieves all oneshot (non-looped) audio instances for the world.\n *\n * @returns An array of audio instances.\n */\n",
2319
2217
  "excerptTokens": [
2320
2218
  {
2321
2219
  "kind": "Content",
2322
- "text": "getAllOneshotAudios(tickAllocated?: "
2323
- },
2324
- {
2325
- "kind": "Content",
2326
- "text": "boolean"
2327
- },
2328
- {
2329
- "kind": "Content",
2330
- "text": "): "
2220
+ "text": "getAllOneshotAudios(): "
2331
2221
  },
2332
2222
  {
2333
2223
  "kind": "Reference",
@@ -2345,22 +2235,13 @@
2345
2235
  ],
2346
2236
  "isStatic": false,
2347
2237
  "returnTypeTokenRange": {
2348
- "startIndex": 3,
2349
- "endIndex": 5
2238
+ "startIndex": 1,
2239
+ "endIndex": 3
2350
2240
  },
2351
2241
  "releaseTag": "Public",
2352
2242
  "isProtected": false,
2353
2243
  "overloadIndex": 1,
2354
- "parameters": [
2355
- {
2356
- "parameterName": "tickAllocated",
2357
- "parameterTypeTokenRange": {
2358
- "startIndex": 1,
2359
- "endIndex": 2
2360
- },
2361
- "isOptional": true
2362
- }
2363
- ],
2244
+ "parameters": [],
2364
2245
  "isOptional": false,
2365
2246
  "isAbstract": false,
2366
2247
  "name": "getAllOneshotAudios"
@@ -5029,16 +4910,7 @@
5029
4910
  "excerptTokens": [
5030
4911
  {
5031
4912
  "kind": "Content",
5032
- "text": "constructor(blockTypeRegistry: "
5033
- },
5034
- {
5035
- "kind": "Reference",
5036
- "text": "BlockTypeRegistry",
5037
- "canonicalReference": "server!BlockTypeRegistry:class"
5038
- },
5039
- {
5040
- "kind": "Content",
5041
- "text": ", options?: "
4913
+ "text": "constructor(options?: "
5042
4914
  },
5043
4915
  {
5044
4916
  "kind": "Reference",
@@ -5055,54 +4927,15 @@
5055
4927
  "overloadIndex": 1,
5056
4928
  "parameters": [
5057
4929
  {
5058
- "parameterName": "blockTypeRegistry",
4930
+ "parameterName": "options",
5059
4931
  "parameterTypeTokenRange": {
5060
4932
  "startIndex": 1,
5061
4933
  "endIndex": 2
5062
4934
  },
5063
- "isOptional": false
5064
- },
5065
- {
5066
- "parameterName": "options",
5067
- "parameterTypeTokenRange": {
5068
- "startIndex": 3,
5069
- "endIndex": 4
5070
- },
5071
4935
  "isOptional": true
5072
4936
  }
5073
4937
  ]
5074
4938
  },
5075
- {
5076
- "kind": "Property",
5077
- "canonicalReference": "server!BlockType#blockTypeRegistry:member",
5078
- "docComment": "/**\n * The block type registry that the block type belongs to.\n */\n",
5079
- "excerptTokens": [
5080
- {
5081
- "kind": "Content",
5082
- "text": "get blockTypeRegistry(): "
5083
- },
5084
- {
5085
- "kind": "Reference",
5086
- "text": "BlockTypeRegistry",
5087
- "canonicalReference": "server!BlockTypeRegistry:class"
5088
- },
5089
- {
5090
- "kind": "Content",
5091
- "text": ";"
5092
- }
5093
- ],
5094
- "isReadonly": true,
5095
- "isOptional": false,
5096
- "releaseTag": "Public",
5097
- "name": "blockTypeRegistry",
5098
- "propertyTypeTokenRange": {
5099
- "startIndex": 1,
5100
- "endIndex": 2
5101
- },
5102
- "isStatic": false,
5103
- "isProtected": false,
5104
- "isAbstract": false
5105
- },
5106
4939
  {
5107
4940
  "kind": "Property",
5108
4941
  "canonicalReference": "server!BlockType#colliderOptions:member",
@@ -5771,19 +5604,11 @@
5771
5604
  {
5772
5605
  "kind": "Method",
5773
5606
  "canonicalReference": "server!BlockTypeRegistry#getAllBlockTypes:member(1)",
5774
- "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",
5607
+ "docComment": "/**\n * Get all registered block types.\n *\n * @returns An array of all registered block types.\n */\n",
5775
5608
  "excerptTokens": [
5776
5609
  {
5777
5610
  "kind": "Content",
5778
- "text": "getAllBlockTypes(tickAllocated?: "
5779
- },
5780
- {
5781
- "kind": "Content",
5782
- "text": "boolean"
5783
- },
5784
- {
5785
- "kind": "Content",
5786
- "text": "): "
5611
+ "text": "getAllBlockTypes(): "
5787
5612
  },
5788
5613
  {
5789
5614
  "kind": "Reference",
@@ -5801,22 +5626,13 @@
5801
5626
  ],
5802
5627
  "isStatic": false,
5803
5628
  "returnTypeTokenRange": {
5804
- "startIndex": 3,
5805
- "endIndex": 5
5629
+ "startIndex": 1,
5630
+ "endIndex": 3
5806
5631
  },
5807
5632
  "releaseTag": "Public",
5808
5633
  "isProtected": false,
5809
5634
  "overloadIndex": 1,
5810
- "parameters": [
5811
- {
5812
- "parameterName": "tickAllocated",
5813
- "parameterTypeTokenRange": {
5814
- "startIndex": 1,
5815
- "endIndex": 2
5816
- },
5817
- "isOptional": true
5818
- }
5819
- ],
5635
+ "parameters": [],
5820
5636
  "isOptional": false,
5821
5637
  "isAbstract": false,
5822
5638
  "name": "getAllBlockTypes"
@@ -6725,16 +6541,7 @@
6725
6541
  "excerptTokens": [
6726
6542
  {
6727
6543
  "kind": "Content",
6728
- "text": "constructor(chunkLattice: "
6729
- },
6730
- {
6731
- "kind": "Reference",
6732
- "text": "ChunkLattice",
6733
- "canonicalReference": "server!ChunkLattice:class"
6734
- },
6735
- {
6736
- "kind": "Content",
6737
- "text": ", originCoordinate: "
6544
+ "text": "constructor(originCoordinate: "
6738
6545
  },
6739
6546
  {
6740
6547
  "kind": "Reference",
@@ -6751,20 +6558,12 @@
6751
6558
  "overloadIndex": 1,
6752
6559
  "parameters": [
6753
6560
  {
6754
- "parameterName": "chunkLattice",
6561
+ "parameterName": "originCoordinate",
6755
6562
  "parameterTypeTokenRange": {
6756
6563
  "startIndex": 1,
6757
6564
  "endIndex": 2
6758
6565
  },
6759
6566
  "isOptional": false
6760
- },
6761
- {
6762
- "parameterName": "originCoordinate",
6763
- "parameterTypeTokenRange": {
6764
- "startIndex": 3,
6765
- "endIndex": 4
6766
- },
6767
- "isOptional": false
6768
6567
  }
6769
6568
  ]
6770
6569
  },
@@ -6861,37 +6660,6 @@
6861
6660
  "isProtected": false,
6862
6661
  "isAbstract": false
6863
6662
  },
6864
- {
6865
- "kind": "Property",
6866
- "canonicalReference": "server!Chunk#chunkLattice:member",
6867
- "docComment": "/**\n * The chunk lattice that the chunk belongs to.\n */\n",
6868
- "excerptTokens": [
6869
- {
6870
- "kind": "Content",
6871
- "text": "get chunkLattice(): "
6872
- },
6873
- {
6874
- "kind": "Reference",
6875
- "text": "ChunkLattice",
6876
- "canonicalReference": "server!ChunkLattice:class"
6877
- },
6878
- {
6879
- "kind": "Content",
6880
- "text": ";"
6881
- }
6882
- ],
6883
- "isReadonly": true,
6884
- "isOptional": false,
6885
- "releaseTag": "Public",
6886
- "name": "chunkLattice",
6887
- "propertyTypeTokenRange": {
6888
- "startIndex": 1,
6889
- "endIndex": 2
6890
- },
6891
- "isStatic": false,
6892
- "isProtected": false,
6893
- "isAbstract": false
6894
- },
6895
6663
  {
6896
6664
  "kind": "Method",
6897
6665
  "canonicalReference": "server!Chunk#getBlockId:member(1)",
@@ -7251,19 +7019,11 @@
7251
7019
  {
7252
7020
  "kind": "Method",
7253
7021
  "canonicalReference": "server!ChunkLattice#getAllChunks:member(1)",
7254
- "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",
7022
+ "docComment": "/**\n * Get all chunks in the lattice.\n *\n * @returns An array of all chunks in the lattice.\n */\n",
7255
7023
  "excerptTokens": [
7256
7024
  {
7257
7025
  "kind": "Content",
7258
- "text": "getAllChunks(tickAllocated?: "
7259
- },
7260
- {
7261
- "kind": "Content",
7262
- "text": "boolean"
7263
- },
7264
- {
7265
- "kind": "Content",
7266
- "text": "): "
7026
+ "text": "getAllChunks(): "
7267
7027
  },
7268
7028
  {
7269
7029
  "kind": "Reference",
@@ -7281,22 +7041,13 @@
7281
7041
  ],
7282
7042
  "isStatic": false,
7283
7043
  "returnTypeTokenRange": {
7284
- "startIndex": 3,
7285
- "endIndex": 5
7044
+ "startIndex": 1,
7045
+ "endIndex": 3
7286
7046
  },
7287
7047
  "releaseTag": "Public",
7288
7048
  "isProtected": false,
7289
7049
  "overloadIndex": 1,
7290
- "parameters": [
7291
- {
7292
- "parameterName": "tickAllocated",
7293
- "parameterTypeTokenRange": {
7294
- "startIndex": 1,
7295
- "endIndex": 2
7296
- },
7297
- "isOptional": true
7298
- }
7299
- ],
7050
+ "parameters": [],
7300
7051
  "isOptional": false,
7301
7052
  "isAbstract": false,
7302
7053
  "name": "getAllChunks"
@@ -7718,37 +7469,6 @@
7718
7469
  "isOptional": false,
7719
7470
  "isAbstract": false,
7720
7471
  "name": "setBlock"
7721
- },
7722
- {
7723
- "kind": "Property",
7724
- "canonicalReference": "server!ChunkLattice#world:member",
7725
- "docComment": "/**\n * The world that the chunk lattice belongs to.\n */\n",
7726
- "excerptTokens": [
7727
- {
7728
- "kind": "Content",
7729
- "text": "get world(): "
7730
- },
7731
- {
7732
- "kind": "Reference",
7733
- "text": "World",
7734
- "canonicalReference": "server!World:class"
7735
- },
7736
- {
7737
- "kind": "Content",
7738
- "text": ";"
7739
- }
7740
- ],
7741
- "isReadonly": true,
7742
- "isOptional": false,
7743
- "releaseTag": "Public",
7744
- "name": "world",
7745
- "propertyTypeTokenRange": {
7746
- "startIndex": 1,
7747
- "endIndex": 2
7748
- },
7749
- "isStatic": false,
7750
- "isProtected": false,
7751
- "isAbstract": false
7752
7472
  }
7753
7473
  ],
7754
7474
  "extendsTokenRange": {
@@ -16955,19 +16675,11 @@
16955
16675
  {
16956
16676
  "kind": "Method",
16957
16677
  "canonicalReference": "server!EntityManager#getAllEntities:member(1)",
16958
- "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",
16678
+ "docComment": "/**\n * Gets all spawned entities in the world.\n *\n * @returns All spawned entities in the world.\n */\n",
16959
16679
  "excerptTokens": [
16960
16680
  {
16961
16681
  "kind": "Content",
16962
- "text": "getAllEntities(tickAllocated?: "
16963
- },
16964
- {
16965
- "kind": "Content",
16966
- "text": "boolean"
16967
- },
16968
- {
16969
- "kind": "Content",
16970
- "text": "): "
16682
+ "text": "getAllEntities(): "
16971
16683
  },
16972
16684
  {
16973
16685
  "kind": "Reference",
@@ -16985,22 +16697,13 @@
16985
16697
  ],
16986
16698
  "isStatic": false,
16987
16699
  "returnTypeTokenRange": {
16988
- "startIndex": 3,
16989
- "endIndex": 5
16700
+ "startIndex": 1,
16701
+ "endIndex": 3
16990
16702
  },
16991
16703
  "releaseTag": "Public",
16992
16704
  "isProtected": false,
16993
16705
  "overloadIndex": 1,
16994
- "parameters": [
16995
- {
16996
- "parameterName": "tickAllocated",
16997
- "parameterTypeTokenRange": {
16998
- "startIndex": 1,
16999
- "endIndex": 2
17000
- },
17001
- "isOptional": true
17002
- }
17003
- ],
16706
+ "parameters": [],
17004
16707
  "isOptional": false,
17005
16708
  "isAbstract": false,
17006
16709
  "name": "getAllEntities"
@@ -22929,19 +22632,11 @@
22929
22632
  {
22930
22633
  "kind": "Method",
22931
22634
  "canonicalReference": "server!LightManager#getAllLights:member(1)",
22932
- "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",
22635
+ "docComment": "/**\n * Retrieves all spawned Light instances for the world.\n *\n * @returns An array of Light instances.\n */\n",
22933
22636
  "excerptTokens": [
22934
22637
  {
22935
22638
  "kind": "Content",
22936
- "text": "getAllLights(tickAllocated?: "
22937
- },
22938
- {
22939
- "kind": "Content",
22940
- "text": "boolean"
22941
- },
22942
- {
22943
- "kind": "Content",
22944
- "text": "): "
22639
+ "text": "getAllLights(): "
22945
22640
  },
22946
22641
  {
22947
22642
  "kind": "Reference",
@@ -22959,22 +22654,13 @@
22959
22654
  ],
22960
22655
  "isStatic": false,
22961
22656
  "returnTypeTokenRange": {
22962
- "startIndex": 3,
22963
- "endIndex": 5
22657
+ "startIndex": 1,
22658
+ "endIndex": 3
22964
22659
  },
22965
22660
  "releaseTag": "Public",
22966
22661
  "isProtected": false,
22967
22662
  "overloadIndex": 1,
22968
- "parameters": [
22969
- {
22970
- "parameterName": "tickAllocated",
22971
- "parameterTypeTokenRange": {
22972
- "startIndex": 1,
22973
- "endIndex": 2
22974
- },
22975
- "isOptional": true
22976
- }
22977
- ],
22663
+ "parameters": [],
22978
22664
  "isOptional": false,
22979
22665
  "isAbstract": false,
22980
22666
  "name": "getAllLights"
@@ -33949,19 +33635,11 @@
33949
33635
  {
33950
33636
  "kind": "Method",
33951
33637
  "canonicalReference": "server!ParticleEmitterManager#getAllParticleEmitters:member(1)",
33952
- "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",
33638
+ "docComment": "/**\n * Retrieves all spawned ParticleEmitter instances for the world.\n *\n * @returns An array of ParticleEmitter instances.\n */\n",
33953
33639
  "excerptTokens": [
33954
33640
  {
33955
33641
  "kind": "Content",
33956
- "text": "getAllParticleEmitters(tickAllocated?: "
33957
- },
33958
- {
33959
- "kind": "Content",
33960
- "text": "boolean"
33961
- },
33962
- {
33963
- "kind": "Content",
33964
- "text": "): "
33642
+ "text": "getAllParticleEmitters(): "
33965
33643
  },
33966
33644
  {
33967
33645
  "kind": "Reference",
@@ -33979,22 +33657,13 @@
33979
33657
  ],
33980
33658
  "isStatic": false,
33981
33659
  "returnTypeTokenRange": {
33982
- "startIndex": 3,
33983
- "endIndex": 5
33660
+ "startIndex": 1,
33661
+ "endIndex": 3
33984
33662
  },
33985
33663
  "releaseTag": "Public",
33986
33664
  "isProtected": false,
33987
33665
  "overloadIndex": 1,
33988
- "parameters": [
33989
- {
33990
- "parameterName": "tickAllocated",
33991
- "parameterTypeTokenRange": {
33992
- "startIndex": 1,
33993
- "endIndex": 2
33994
- },
33995
- "isOptional": true
33996
- }
33997
- ],
33666
+ "parameters": [],
33998
33667
  "isOptional": false,
33999
33668
  "isAbstract": false,
34000
33669
  "name": "getAllParticleEmitters"
@@ -47135,19 +46804,11 @@
47135
46804
  {
47136
46805
  "kind": "Method",
47137
46806
  "canonicalReference": "server!SceneUIManager#getAllSceneUIs:member(1)",
47138
- "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",
46807
+ "docComment": "/**\n * Retrieves all loaded SceneUI instances for the world.\n *\n * @returns An array of SceneUI instances.\n */\n",
47139
46808
  "excerptTokens": [
47140
46809
  {
47141
46810
  "kind": "Content",
47142
- "text": "getAllSceneUIs(tickAllocated?: "
47143
- },
47144
- {
47145
- "kind": "Content",
47146
- "text": "boolean"
47147
- },
47148
- {
47149
- "kind": "Content",
47150
- "text": "): "
46811
+ "text": "getAllSceneUIs(): "
47151
46812
  },
47152
46813
  {
47153
46814
  "kind": "Reference",
@@ -47165,22 +46826,13 @@
47165
46826
  ],
47166
46827
  "isStatic": false,
47167
46828
  "returnTypeTokenRange": {
47168
- "startIndex": 3,
47169
- "endIndex": 5
46829
+ "startIndex": 1,
46830
+ "endIndex": 3
47170
46831
  },
47171
46832
  "releaseTag": "Public",
47172
46833
  "isProtected": false,
47173
46834
  "overloadIndex": 1,
47174
- "parameters": [
47175
- {
47176
- "parameterName": "tickAllocated",
47177
- "parameterTypeTokenRange": {
47178
- "startIndex": 1,
47179
- "endIndex": 2
47180
- },
47181
- "isOptional": true
47182
- }
47183
- ],
46835
+ "parameters": [],
47184
46836
  "isOptional": false,
47185
46837
  "isAbstract": false,
47186
46838
  "name": "getAllSceneUIs"
@@ -49562,27 +49214,6 @@
49562
49214
  "releaseTag": "Public",
49563
49215
  "name": "PHYSICS_STEP"
49564
49216
  },
49565
- {
49566
- "kind": "EnumMember",
49567
- "canonicalReference": "server!TelemetrySpanOperation.RELEASE_TICK_ALLOCATION:member",
49568
- "docComment": "",
49569
- "excerptTokens": [
49570
- {
49571
- "kind": "Content",
49572
- "text": "RELEASE_TICK_ALLOCATION = "
49573
- },
49574
- {
49575
- "kind": "Content",
49576
- "text": "\"release_tick_allocation\""
49577
- }
49578
- ],
49579
- "initializerTokenRange": {
49580
- "startIndex": 1,
49581
- "endIndex": 2
49582
- },
49583
- "releaseTag": "Public",
49584
- "name": "RELEASE_TICK_ALLOCATION"
49585
- },
49586
49217
  {
49587
49218
  "kind": "EnumMember",
49588
49219
  "canonicalReference": "server!TelemetrySpanOperation.SEND_ALL_PACKETS:member",
@@ -49797,645 +49428,6 @@
49797
49428
  "endIndex": 6
49798
49429
  }
49799
49430
  },
49800
- {
49801
- "kind": "Class",
49802
- "canonicalReference": "server!TickAllocator:class",
49803
- "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",
49804
- "excerptTokens": [
49805
- {
49806
- "kind": "Content",
49807
- "text": "export default class TickAllocator "
49808
- }
49809
- ],
49810
- "fileUrlPath": "src/shared/classes/TickAllocator.ts",
49811
- "releaseTag": "Public",
49812
- "isAbstract": false,
49813
- "name": "TickAllocator",
49814
- "preserveMemberOrder": false,
49815
- "members": [
49816
- {
49817
- "kind": "Method",
49818
- "canonicalReference": "server!TickAllocator#filter:member(1)",
49819
- "docComment": "/**\n * Filters an array using a callback function.\n *\n * @param array - The array to filter.\n *\n * @param callback - The callback function to filter the array.\n *\n * @typeParam T - The type of the array.\n *\n * @returns A new array with the filtered values.\n */\n",
49820
- "excerptTokens": [
49821
- {
49822
- "kind": "Content",
49823
- "text": "filter<T>(array: "
49824
- },
49825
- {
49826
- "kind": "Content",
49827
- "text": "T[]"
49828
- },
49829
- {
49830
- "kind": "Content",
49831
- "text": ", callback: "
49832
- },
49833
- {
49834
- "kind": "Content",
49835
- "text": "(value: T, index: number, array: T[]) => boolean"
49836
- },
49837
- {
49838
- "kind": "Content",
49839
- "text": "): "
49840
- },
49841
- {
49842
- "kind": "Content",
49843
- "text": "T[]"
49844
- },
49845
- {
49846
- "kind": "Content",
49847
- "text": ";"
49848
- }
49849
- ],
49850
- "typeParameters": [
49851
- {
49852
- "typeParameterName": "T",
49853
- "constraintTokenRange": {
49854
- "startIndex": 0,
49855
- "endIndex": 0
49856
- },
49857
- "defaultTypeTokenRange": {
49858
- "startIndex": 0,
49859
- "endIndex": 0
49860
- }
49861
- }
49862
- ],
49863
- "isStatic": false,
49864
- "returnTypeTokenRange": {
49865
- "startIndex": 5,
49866
- "endIndex": 6
49867
- },
49868
- "releaseTag": "Public",
49869
- "isProtected": false,
49870
- "overloadIndex": 1,
49871
- "parameters": [
49872
- {
49873
- "parameterName": "array",
49874
- "parameterTypeTokenRange": {
49875
- "startIndex": 1,
49876
- "endIndex": 2
49877
- },
49878
- "isOptional": false
49879
- },
49880
- {
49881
- "parameterName": "callback",
49882
- "parameterTypeTokenRange": {
49883
- "startIndex": 3,
49884
- "endIndex": 4
49885
- },
49886
- "isOptional": false
49887
- }
49888
- ],
49889
- "isOptional": false,
49890
- "isAbstract": false,
49891
- "name": "filter"
49892
- },
49893
- {
49894
- "kind": "Method",
49895
- "canonicalReference": "server!TickAllocator#getArray:member(1)",
49896
- "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",
49897
- "excerptTokens": [
49898
- {
49899
- "kind": "Content",
49900
- "text": "getArray<T extends "
49901
- },
49902
- {
49903
- "kind": "Content",
49904
- "text": "unknown[]"
49905
- },
49906
- {
49907
- "kind": "Content",
49908
- "text": " = "
49909
- },
49910
- {
49911
- "kind": "Content",
49912
- "text": "unknown[]"
49913
- },
49914
- {
49915
- "kind": "Content",
49916
- "text": ">(copyFromA?: "
49917
- },
49918
- {
49919
- "kind": "Reference",
49920
- "text": "Iterable",
49921
- "canonicalReference": "!Iterable:interface"
49922
- },
49923
- {
49924
- "kind": "Content",
49925
- "text": "<unknown>"
49926
- },
49927
- {
49928
- "kind": "Content",
49929
- "text": ", copyFromB?: "
49930
- },
49931
- {
49932
- "kind": "Reference",
49933
- "text": "Iterable",
49934
- "canonicalReference": "!Iterable:interface"
49935
- },
49936
- {
49937
- "kind": "Content",
49938
- "text": "<unknown>"
49939
- },
49940
- {
49941
- "kind": "Content",
49942
- "text": "): "
49943
- },
49944
- {
49945
- "kind": "Content",
49946
- "text": "T"
49947
- },
49948
- {
49949
- "kind": "Content",
49950
- "text": ";"
49951
- }
49952
- ],
49953
- "typeParameters": [
49954
- {
49955
- "typeParameterName": "T",
49956
- "constraintTokenRange": {
49957
- "startIndex": 1,
49958
- "endIndex": 2
49959
- },
49960
- "defaultTypeTokenRange": {
49961
- "startIndex": 3,
49962
- "endIndex": 4
49963
- }
49964
- }
49965
- ],
49966
- "isStatic": false,
49967
- "returnTypeTokenRange": {
49968
- "startIndex": 11,
49969
- "endIndex": 12
49970
- },
49971
- "releaseTag": "Public",
49972
- "isProtected": false,
49973
- "overloadIndex": 1,
49974
- "parameters": [
49975
- {
49976
- "parameterName": "copyFromA",
49977
- "parameterTypeTokenRange": {
49978
- "startIndex": 5,
49979
- "endIndex": 7
49980
- },
49981
- "isOptional": true
49982
- },
49983
- {
49984
- "parameterName": "copyFromB",
49985
- "parameterTypeTokenRange": {
49986
- "startIndex": 8,
49987
- "endIndex": 10
49988
- },
49989
- "isOptional": true
49990
- }
49991
- ],
49992
- "isOptional": false,
49993
- "isAbstract": false,
49994
- "name": "getArray"
49995
- },
49996
- {
49997
- "kind": "Method",
49998
- "canonicalReference": "server!TickAllocator#getArray3Number:member(1)",
49999
- "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",
50000
- "excerptTokens": [
50001
- {
50002
- "kind": "Content",
50003
- "text": "getArray3Number(copyFrom?: "
50004
- },
50005
- {
50006
- "kind": "Reference",
50007
- "text": "Array3Number",
50008
- "canonicalReference": "server!Array3Number:type"
50009
- },
50010
- {
50011
- "kind": "Content",
50012
- "text": " | "
50013
- },
50014
- {
50015
- "kind": "Reference",
50016
- "text": "Set",
50017
- "canonicalReference": "!Set:interface"
50018
- },
50019
- {
50020
- "kind": "Content",
50021
- "text": "<number>"
50022
- },
50023
- {
50024
- "kind": "Content",
50025
- "text": "): "
50026
- },
50027
- {
50028
- "kind": "Reference",
50029
- "text": "Array3Number",
50030
- "canonicalReference": "server!Array3Number:type"
50031
- },
50032
- {
50033
- "kind": "Content",
50034
- "text": ";"
50035
- }
50036
- ],
50037
- "isStatic": false,
50038
- "returnTypeTokenRange": {
50039
- "startIndex": 6,
50040
- "endIndex": 7
50041
- },
50042
- "releaseTag": "Public",
50043
- "isProtected": false,
50044
- "overloadIndex": 1,
50045
- "parameters": [
50046
- {
50047
- "parameterName": "copyFrom",
50048
- "parameterTypeTokenRange": {
50049
- "startIndex": 1,
50050
- "endIndex": 5
50051
- },
50052
- "isOptional": true
50053
- }
50054
- ],
50055
- "isOptional": false,
50056
- "isAbstract": false,
50057
- "name": "getArray3Number"
50058
- },
50059
- {
50060
- "kind": "Method",
50061
- "canonicalReference": "server!TickAllocator#getArray4Number:member(1)",
50062
- "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",
50063
- "excerptTokens": [
50064
- {
50065
- "kind": "Content",
50066
- "text": "getArray4Number(copyFrom?: "
50067
- },
50068
- {
50069
- "kind": "Reference",
50070
- "text": "Array4Number",
50071
- "canonicalReference": "server!Array4Number:type"
50072
- },
50073
- {
50074
- "kind": "Content",
50075
- "text": " | "
50076
- },
50077
- {
50078
- "kind": "Reference",
50079
- "text": "Set",
50080
- "canonicalReference": "!Set:interface"
50081
- },
50082
- {
50083
- "kind": "Content",
50084
- "text": "<number>"
50085
- },
50086
- {
50087
- "kind": "Content",
50088
- "text": "): "
50089
- },
50090
- {
50091
- "kind": "Reference",
50092
- "text": "Array4Number",
50093
- "canonicalReference": "server!Array4Number:type"
50094
- },
50095
- {
50096
- "kind": "Content",
50097
- "text": ";"
50098
- }
50099
- ],
50100
- "isStatic": false,
50101
- "returnTypeTokenRange": {
50102
- "startIndex": 6,
50103
- "endIndex": 7
50104
- },
50105
- "releaseTag": "Public",
50106
- "isProtected": false,
50107
- "overloadIndex": 1,
50108
- "parameters": [
50109
- {
50110
- "parameterName": "copyFrom",
50111
- "parameterTypeTokenRange": {
50112
- "startIndex": 1,
50113
- "endIndex": 5
50114
- },
50115
- "isOptional": true
50116
- }
50117
- ],
50118
- "isOptional": false,
50119
- "isAbstract": false,
50120
- "name": "getArray4Number"
50121
- },
50122
- {
50123
- "kind": "Method",
50124
- "canonicalReference": "server!TickAllocator#getObject:member(1)",
50125
- "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",
50126
- "excerptTokens": [
50127
- {
50128
- "kind": "Content",
50129
- "text": "getObject<T extends "
50130
- },
50131
- {
50132
- "kind": "Reference",
50133
- "text": "Record",
50134
- "canonicalReference": "!Record:type"
50135
- },
50136
- {
50137
- "kind": "Content",
50138
- "text": "<string, unknown>"
50139
- },
50140
- {
50141
- "kind": "Content",
50142
- "text": " = "
50143
- },
50144
- {
50145
- "kind": "Reference",
50146
- "text": "Record",
50147
- "canonicalReference": "!Record:type"
50148
- },
50149
- {
50150
- "kind": "Content",
50151
- "text": "<string, unknown>"
50152
- },
50153
- {
50154
- "kind": "Content",
50155
- "text": ">(copyFromA?: "
50156
- },
50157
- {
50158
- "kind": "Content",
50159
- "text": "T"
50160
- },
50161
- {
50162
- "kind": "Content",
50163
- "text": ", copyFromB?: "
50164
- },
50165
- {
50166
- "kind": "Content",
50167
- "text": "T"
50168
- },
50169
- {
50170
- "kind": "Content",
50171
- "text": "): "
50172
- },
50173
- {
50174
- "kind": "Content",
50175
- "text": "T"
50176
- },
50177
- {
50178
- "kind": "Content",
50179
- "text": ";"
50180
- }
50181
- ],
50182
- "typeParameters": [
50183
- {
50184
- "typeParameterName": "T",
50185
- "constraintTokenRange": {
50186
- "startIndex": 1,
50187
- "endIndex": 3
50188
- },
50189
- "defaultTypeTokenRange": {
50190
- "startIndex": 4,
50191
- "endIndex": 6
50192
- }
50193
- }
50194
- ],
50195
- "isStatic": false,
50196
- "returnTypeTokenRange": {
50197
- "startIndex": 11,
50198
- "endIndex": 12
50199
- },
50200
- "releaseTag": "Public",
50201
- "isProtected": false,
50202
- "overloadIndex": 1,
50203
- "parameters": [
50204
- {
50205
- "parameterName": "copyFromA",
50206
- "parameterTypeTokenRange": {
50207
- "startIndex": 7,
50208
- "endIndex": 8
50209
- },
50210
- "isOptional": true
50211
- },
50212
- {
50213
- "parameterName": "copyFromB",
50214
- "parameterTypeTokenRange": {
50215
- "startIndex": 9,
50216
- "endIndex": 10
50217
- },
50218
- "isOptional": true
50219
- }
50220
- ],
50221
- "isOptional": false,
50222
- "isAbstract": false,
50223
- "name": "getObject"
50224
- },
50225
- {
50226
- "kind": "Method",
50227
- "canonicalReference": "server!TickAllocator#getSet:member(1)",
50228
- "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",
50229
- "excerptTokens": [
50230
- {
50231
- "kind": "Content",
50232
- "text": "getSet<T>(copyFromA?: "
50233
- },
50234
- {
50235
- "kind": "Reference",
50236
- "text": "Set",
50237
- "canonicalReference": "!Set:interface"
50238
- },
50239
- {
50240
- "kind": "Content",
50241
- "text": "<T> | T[]"
50242
- },
50243
- {
50244
- "kind": "Content",
50245
- "text": ", copyFromB?: "
50246
- },
50247
- {
50248
- "kind": "Reference",
50249
- "text": "Set",
50250
- "canonicalReference": "!Set:interface"
50251
- },
50252
- {
50253
- "kind": "Content",
50254
- "text": "<T> | T[]"
50255
- },
50256
- {
50257
- "kind": "Content",
50258
- "text": "): "
50259
- },
50260
- {
50261
- "kind": "Reference",
50262
- "text": "Set",
50263
- "canonicalReference": "!Set:interface"
50264
- },
50265
- {
50266
- "kind": "Content",
50267
- "text": "<T>"
50268
- },
50269
- {
50270
- "kind": "Content",
50271
- "text": ";"
50272
- }
50273
- ],
50274
- "typeParameters": [
50275
- {
50276
- "typeParameterName": "T",
50277
- "constraintTokenRange": {
50278
- "startIndex": 0,
50279
- "endIndex": 0
50280
- },
50281
- "defaultTypeTokenRange": {
50282
- "startIndex": 0,
50283
- "endIndex": 0
50284
- }
50285
- }
50286
- ],
50287
- "isStatic": false,
50288
- "returnTypeTokenRange": {
50289
- "startIndex": 7,
50290
- "endIndex": 9
50291
- },
50292
- "releaseTag": "Public",
50293
- "isProtected": false,
50294
- "overloadIndex": 1,
50295
- "parameters": [
50296
- {
50297
- "parameterName": "copyFromA",
50298
- "parameterTypeTokenRange": {
50299
- "startIndex": 1,
50300
- "endIndex": 3
50301
- },
50302
- "isOptional": true
50303
- },
50304
- {
50305
- "parameterName": "copyFromB",
50306
- "parameterTypeTokenRange": {
50307
- "startIndex": 4,
50308
- "endIndex": 6
50309
- },
50310
- "isOptional": true
50311
- }
50312
- ],
50313
- "isOptional": false,
50314
- "isAbstract": false,
50315
- "name": "getSet"
50316
- },
50317
- {
50318
- "kind": "Method",
50319
- "canonicalReference": "server!TickAllocator#map:member(1)",
50320
- "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",
50321
- "excerptTokens": [
50322
- {
50323
- "kind": "Content",
50324
- "text": "map<T, U>(array: "
50325
- },
50326
- {
50327
- "kind": "Content",
50328
- "text": "T[]"
50329
- },
50330
- {
50331
- "kind": "Content",
50332
- "text": ", callback: "
50333
- },
50334
- {
50335
- "kind": "Content",
50336
- "text": "(value: T, index: number, array: T[]) => U"
50337
- },
50338
- {
50339
- "kind": "Content",
50340
- "text": "): "
50341
- },
50342
- {
50343
- "kind": "Content",
50344
- "text": "U[]"
50345
- },
50346
- {
50347
- "kind": "Content",
50348
- "text": ";"
50349
- }
50350
- ],
50351
- "typeParameters": [
50352
- {
50353
- "typeParameterName": "T",
50354
- "constraintTokenRange": {
50355
- "startIndex": 0,
50356
- "endIndex": 0
50357
- },
50358
- "defaultTypeTokenRange": {
50359
- "startIndex": 0,
50360
- "endIndex": 0
50361
- }
50362
- },
50363
- {
50364
- "typeParameterName": "U",
50365
- "constraintTokenRange": {
50366
- "startIndex": 0,
50367
- "endIndex": 0
50368
- },
50369
- "defaultTypeTokenRange": {
50370
- "startIndex": 0,
50371
- "endIndex": 0
50372
- }
50373
- }
50374
- ],
50375
- "isStatic": false,
50376
- "returnTypeTokenRange": {
50377
- "startIndex": 5,
50378
- "endIndex": 6
50379
- },
50380
- "releaseTag": "Public",
50381
- "isProtected": false,
50382
- "overloadIndex": 1,
50383
- "parameters": [
50384
- {
50385
- "parameterName": "array",
50386
- "parameterTypeTokenRange": {
50387
- "startIndex": 1,
50388
- "endIndex": 2
50389
- },
50390
- "isOptional": false
50391
- },
50392
- {
50393
- "parameterName": "callback",
50394
- "parameterTypeTokenRange": {
50395
- "startIndex": 3,
50396
- "endIndex": 4
50397
- },
50398
- "isOptional": false
50399
- }
50400
- ],
50401
- "isOptional": false,
50402
- "isAbstract": false,
50403
- "name": "map"
50404
- },
50405
- {
50406
- "kind": "Method",
50407
- "canonicalReference": "server!TickAllocator#reset:member(1)",
50408
- "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",
50409
- "excerptTokens": [
50410
- {
50411
- "kind": "Content",
50412
- "text": "reset(): "
50413
- },
50414
- {
50415
- "kind": "Content",
50416
- "text": "void"
50417
- },
50418
- {
50419
- "kind": "Content",
50420
- "text": ";"
50421
- }
50422
- ],
50423
- "isStatic": false,
50424
- "returnTypeTokenRange": {
50425
- "startIndex": 1,
50426
- "endIndex": 2
50427
- },
50428
- "releaseTag": "Public",
50429
- "isProtected": false,
50430
- "overloadIndex": 1,
50431
- "parameters": [],
50432
- "isOptional": false,
50433
- "isAbstract": false,
50434
- "name": "reset"
50435
- }
50436
- ],
50437
- "implementsTokenRanges": []
50438
- },
50439
49431
  {
50440
49432
  "kind": "Interface",
50441
49433
  "canonicalReference": "server!TrimeshColliderOptions:interface",
@@ -55994,37 +54986,6 @@
55994
54986
  "isStatic": false,
55995
54987
  "isProtected": false,
55996
54988
  "isAbstract": false
55997
- },
55998
- {
55999
- "kind": "Property",
56000
- "canonicalReference": "server!World#tickAllocator:member",
56001
- "docComment": "/**\n * The tick allocator for the world.\n */\n",
56002
- "excerptTokens": [
56003
- {
56004
- "kind": "Content",
56005
- "text": "get tickAllocator(): "
56006
- },
56007
- {
56008
- "kind": "Reference",
56009
- "text": "TickAllocator",
56010
- "canonicalReference": "server!TickAllocator:class"
56011
- },
56012
- {
56013
- "kind": "Content",
56014
- "text": ";"
56015
- }
56016
- ],
56017
- "isReadonly": true,
56018
- "isOptional": false,
56019
- "releaseTag": "Public",
56020
- "name": "tickAllocator",
56021
- "propertyTypeTokenRange": {
56022
- "startIndex": 1,
56023
- "endIndex": 2
56024
- },
56025
- "isStatic": false,
56026
- "isProtected": false,
56027
- "isAbstract": false
56028
54989
  }
56029
54990
  ],
56030
54991
  "extendsTokenRange": {