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
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [Array3Number](./server.array3number.md)
|
|
4
|
+
|
|
5
|
+
## Array3Number type
|
|
6
|
+
|
|
7
|
+
A 3-element number array.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export type Array3Number = [number, number, number];
|
|
13
|
+
```
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [Array4Number](./server.array4number.md)
|
|
4
|
+
|
|
5
|
+
## Array4Number type
|
|
6
|
+
|
|
7
|
+
A 4-element number array.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
export type Array4Number = [number, number, number, number];
|
|
13
|
+
```
|
|
@@ -9,8 +9,44 @@ Retrieves all loaded audio instances for the world.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllAudios(): Audio[];
|
|
12
|
+
getAllAudios(tickAllocated?: boolean): Audio[];
|
|
13
13
|
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Parameter
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Type
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Description
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th></tr></thead>
|
|
33
|
+
<tbody><tr><td>
|
|
34
|
+
|
|
35
|
+
tickAllocated
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
boolean
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
_(Optional)_ 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.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
14
50
|
**Returns:**
|
|
15
51
|
|
|
16
52
|
[Audio](./server.audio.md)<!-- -->\[\]
|
|
@@ -9,7 +9,7 @@ Creates a new block type instance.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
constructor(options?: BlockTypeOptions);
|
|
12
|
+
constructor(blockTypeRegistry: BlockTypeRegistry, options?: BlockTypeOptions);
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Parameters
|
|
@@ -32,6 +32,20 @@ Description
|
|
|
32
32
|
</th></tr></thead>
|
|
33
33
|
<tbody><tr><td>
|
|
34
34
|
|
|
35
|
+
blockTypeRegistry
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
[BlockTypeRegistry](./server.blocktyperegistry.md)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
</td></tr>
|
|
47
|
+
<tr><td>
|
|
48
|
+
|
|
35
49
|
options
|
|
36
50
|
|
|
37
51
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [BlockType](./server.blocktype.md) > [blockTypeRegistry](./server.blocktype.blocktyperegistry.md)
|
|
4
|
+
|
|
5
|
+
## BlockType.blockTypeRegistry property
|
|
6
|
+
|
|
7
|
+
The block type registry that the block type belongs to.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
get blockTypeRegistry(): BlockTypeRegistry;
|
|
13
|
+
```
|
package/docs/server.blocktype.md
CHANGED
|
@@ -58,7 +58,7 @@ Description
|
|
|
58
58
|
</th></tr></thead>
|
|
59
59
|
<tbody><tr><td>
|
|
60
60
|
|
|
61
|
-
[(constructor)(options)](./server.blocktype._constructor_.md)
|
|
61
|
+
[(constructor)(blockTypeRegistry, options)](./server.blocktype._constructor_.md)
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
</td><td>
|
|
@@ -97,6 +97,27 @@ Description
|
|
|
97
97
|
</th></tr></thead>
|
|
98
98
|
<tbody><tr><td>
|
|
99
99
|
|
|
100
|
+
[blockTypeRegistry](./server.blocktype.blocktyperegistry.md)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
</td><td>
|
|
104
|
+
|
|
105
|
+
`readonly`
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
</td><td>
|
|
109
|
+
|
|
110
|
+
[BlockTypeRegistry](./server.blocktyperegistry.md)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
</td><td>
|
|
114
|
+
|
|
115
|
+
The block type registry that the block type belongs to.
|
|
116
|
+
|
|
117
|
+
|
|
118
|
+
</td></tr>
|
|
119
|
+
<tr><td>
|
|
120
|
+
|
|
100
121
|
[colliderOptions](./server.blocktype.collideroptions.md)
|
|
101
122
|
|
|
102
123
|
|
|
@@ -9,8 +9,44 @@ Get all registered block types.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllBlockTypes(): BlockType[];
|
|
12
|
+
getAllBlockTypes(tickAllocated?: boolean): BlockType[];
|
|
13
13
|
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Parameter
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Type
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Description
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th></tr></thead>
|
|
33
|
+
<tbody><tr><td>
|
|
34
|
+
|
|
35
|
+
tickAllocated
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
boolean
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
_(Optional)_ 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.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
14
50
|
**Returns:**
|
|
15
51
|
|
|
16
52
|
[BlockType](./server.blocktype.md)<!-- -->\[\]
|
|
@@ -9,7 +9,7 @@ Creates a new chunk instance.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
constructor(originCoordinate: Vector3Like);
|
|
12
|
+
constructor(chunkLattice: ChunkLattice, originCoordinate: Vector3Like);
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Parameters
|
|
@@ -32,6 +32,20 @@ Description
|
|
|
32
32
|
</th></tr></thead>
|
|
33
33
|
<tbody><tr><td>
|
|
34
34
|
|
|
35
|
+
chunkLattice
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
[ChunkLattice](./server.chunklattice.md)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
</td></tr>
|
|
47
|
+
<tr><td>
|
|
48
|
+
|
|
35
49
|
originCoordinate
|
|
36
50
|
|
|
37
51
|
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [Chunk](./server.chunk.md) > [chunkLattice](./server.chunk.chunklattice.md)
|
|
4
|
+
|
|
5
|
+
## Chunk.chunkLattice property
|
|
6
|
+
|
|
7
|
+
The chunk lattice that the chunk belongs to.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
get chunkLattice(): ChunkLattice;
|
|
13
|
+
```
|
package/docs/server.chunk.md
CHANGED
|
@@ -37,7 +37,7 @@ Description
|
|
|
37
37
|
</th></tr></thead>
|
|
38
38
|
<tbody><tr><td>
|
|
39
39
|
|
|
40
|
-
[(constructor)(originCoordinate)](./server.chunk._constructor_.md)
|
|
40
|
+
[(constructor)(chunkLattice, originCoordinate)](./server.chunk._constructor_.md)
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
</td><td>
|
|
@@ -94,6 +94,27 @@ Readonly<Uint8Array>
|
|
|
94
94
|
The blocks in the chunk as a flat Uint8Array\[4096\], each index as 0 or a block type id.
|
|
95
95
|
|
|
96
96
|
|
|
97
|
+
</td></tr>
|
|
98
|
+
<tr><td>
|
|
99
|
+
|
|
100
|
+
[chunkLattice](./server.chunk.chunklattice.md)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
</td><td>
|
|
104
|
+
|
|
105
|
+
`readonly`
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
</td><td>
|
|
109
|
+
|
|
110
|
+
[ChunkLattice](./server.chunklattice.md)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
</td><td>
|
|
114
|
+
|
|
115
|
+
The chunk lattice that the chunk belongs to.
|
|
116
|
+
|
|
117
|
+
|
|
97
118
|
</td></tr>
|
|
98
119
|
<tr><td>
|
|
99
120
|
|
|
@@ -9,8 +9,44 @@ Get all chunks in the lattice.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllChunks(): Chunk[];
|
|
12
|
+
getAllChunks(tickAllocated?: boolean): Chunk[];
|
|
13
13
|
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Parameter
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Type
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Description
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th></tr></thead>
|
|
33
|
+
<tbody><tr><td>
|
|
34
|
+
|
|
35
|
+
tickAllocated
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
boolean
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
_(Optional)_ 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.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
14
50
|
**Returns:**
|
|
15
51
|
|
|
16
52
|
[Chunk](./server.chunk.md)<!-- -->\[\]
|
|
@@ -94,6 +94,27 @@ number
|
|
|
94
94
|
The number of chunks in the lattice.
|
|
95
95
|
|
|
96
96
|
|
|
97
|
+
</td></tr>
|
|
98
|
+
<tr><td>
|
|
99
|
+
|
|
100
|
+
[world](./server.chunklattice.world.md)
|
|
101
|
+
|
|
102
|
+
|
|
103
|
+
</td><td>
|
|
104
|
+
|
|
105
|
+
`readonly`
|
|
106
|
+
|
|
107
|
+
|
|
108
|
+
</td><td>
|
|
109
|
+
|
|
110
|
+
[World](./server.world.md)
|
|
111
|
+
|
|
112
|
+
|
|
113
|
+
</td><td>
|
|
114
|
+
|
|
115
|
+
The world that the chunk lattice belongs to.
|
|
116
|
+
|
|
117
|
+
|
|
97
118
|
</td></tr>
|
|
98
119
|
</tbody></table>
|
|
99
120
|
|
|
@@ -131,7 +152,7 @@ Removes and clears all chunks and their blocks from the lattice.
|
|
|
131
152
|
</td></tr>
|
|
132
153
|
<tr><td>
|
|
133
154
|
|
|
134
|
-
[getAllChunks()](./server.chunklattice.getallchunks.md)
|
|
155
|
+
[getAllChunks(tickAllocated)](./server.chunklattice.getallchunks.md)
|
|
135
156
|
|
|
136
157
|
|
|
137
158
|
</td><td>
|
|
@@ -0,0 +1,13 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [ChunkLattice](./server.chunklattice.md) > [world](./server.chunklattice.world.md)
|
|
4
|
+
|
|
5
|
+
## ChunkLattice.world property
|
|
6
|
+
|
|
7
|
+
The world that the chunk lattice belongs to.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
get world(): World;
|
|
13
|
+
```
|
|
@@ -9,8 +9,44 @@ Gets all spawned entities in the world.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllEntities(): Entity[];
|
|
12
|
+
getAllEntities(tickAllocated?: boolean): Entity[];
|
|
13
13
|
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Parameter
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Type
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Description
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th></tr></thead>
|
|
33
|
+
<tbody><tr><td>
|
|
34
|
+
|
|
35
|
+
tickAllocated
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
boolean
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
_(Optional)_ 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.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
14
50
|
**Returns:**
|
|
15
51
|
|
|
16
52
|
[Entity](./server.entity.md)<!-- -->\[\]
|
|
@@ -9,8 +9,44 @@ Retrieves all spawned Light instances for the world.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllLights(): Light[];
|
|
12
|
+
getAllLights(tickAllocated?: boolean): Light[];
|
|
13
13
|
```
|
|
14
|
+
|
|
15
|
+
## Parameters
|
|
16
|
+
|
|
17
|
+
<table><thead><tr><th>
|
|
18
|
+
|
|
19
|
+
Parameter
|
|
20
|
+
|
|
21
|
+
|
|
22
|
+
</th><th>
|
|
23
|
+
|
|
24
|
+
Type
|
|
25
|
+
|
|
26
|
+
|
|
27
|
+
</th><th>
|
|
28
|
+
|
|
29
|
+
Description
|
|
30
|
+
|
|
31
|
+
|
|
32
|
+
</th></tr></thead>
|
|
33
|
+
<tbody><tr><td>
|
|
34
|
+
|
|
35
|
+
tickAllocated
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
boolean
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
_(Optional)_ 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.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
14
50
|
**Returns:**
|
|
15
51
|
|
|
16
52
|
[Light](./server.light.md)<!-- -->\[\]
|
package/docs/server.md
CHANGED
|
@@ -445,6 +445,17 @@ A simple entity controller with basic movement functions.
|
|
|
445
445
|
Represents the physics simulation for a world.
|
|
446
446
|
|
|
447
447
|
|
|
448
|
+
</td></tr>
|
|
449
|
+
<tr><td>
|
|
450
|
+
|
|
451
|
+
[TickAllocator](./server.tickallocator.md)
|
|
452
|
+
|
|
453
|
+
|
|
454
|
+
</td><td>
|
|
455
|
+
|
|
456
|
+
High-performance tick-scoped allocator for temporary objects, arrays, and buffers. All allocations are automatically bulk-released when reset() is called.
|
|
457
|
+
|
|
458
|
+
|
|
448
459
|
</td></tr>
|
|
449
460
|
<tr><td>
|
|
450
461
|
|
|
@@ -1517,6 +1528,28 @@ Description
|
|
|
1517
1528
|
</th></tr></thead>
|
|
1518
1529
|
<tbody><tr><td>
|
|
1519
1530
|
|
|
1531
|
+
[Array3Number](./server.array3number.md)
|
|
1532
|
+
|
|
1533
|
+
|
|
1534
|
+
</td><td>
|
|
1535
|
+
|
|
1536
|
+
A 3-element number array.
|
|
1537
|
+
|
|
1538
|
+
|
|
1539
|
+
</td></tr>
|
|
1540
|
+
<tr><td>
|
|
1541
|
+
|
|
1542
|
+
[Array4Number](./server.array4number.md)
|
|
1543
|
+
|
|
1544
|
+
|
|
1545
|
+
</td><td>
|
|
1546
|
+
|
|
1547
|
+
A 4-element number array.
|
|
1548
|
+
|
|
1549
|
+
|
|
1550
|
+
</td></tr>
|
|
1551
|
+
<tr><td>
|
|
1552
|
+
|
|
1520
1553
|
[ColliderOptions](./server.collideroptions.md)
|
|
1521
1554
|
|
|
1522
1555
|
|