hytopia 0.8.6-dev6 → 0.8.6-dev6nopool
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 +166 -164
- package/docs/server.audiomanager.getallaudios.md +1 -38
- package/docs/server.audiomanager.getallentityattachedaudios.md +1 -1
- package/docs/server.audiomanager.md +1 -1
- package/docs/server.blocktype._constructor_.md +1 -15
- package/docs/server.blocktype.md +1 -22
- package/docs/server.blocktyperegistry.getallblocktypes.md +1 -38
- package/docs/server.blocktyperegistry.md +1 -1
- package/docs/server.chunk._constructor_.md +1 -15
- package/docs/server.chunk.md +1 -22
- package/docs/server.chunklattice.getallchunks.md +1 -38
- package/docs/server.chunklattice.md +1 -22
- package/docs/server.chunklatticeevent.md +14 -0
- package/docs/server.chunklatticeeventpayloads._chunk_lattice.add_chunk_.md +16 -0
- package/docs/server.chunklatticeeventpayloads.md +19 -0
- package/docs/server.entitymanager.getallentities.md +1 -38
- package/docs/server.entitymanager.md +1 -1
- package/docs/server.lightmanager.getalllights.md +1 -38
- package/docs/server.lightmanager.md +1 -1
- package/docs/server.md +25 -25
- package/docs/server.particleemitter.burst.md +54 -0
- package/docs/server.particleemitter.md +14 -0
- package/docs/server.particleemitterevent.md +14 -0
- package/docs/server.particleemittereventpayloads._particle_emitter.burst_.md +16 -0
- package/docs/server.particleemittereventpayloads.md +19 -0
- package/docs/server.particleemittermanager.getallparticleemitters.md +1 -38
- package/docs/server.particleemittermanager.md +1 -1
- package/docs/server.rgbcolor.md +1 -1
- package/docs/server.sceneuimanager.getallsceneuis.md +1 -38
- package/docs/server.sceneuimanager.md +1 -1
- package/docs/server.telemetry.getprocessstats.md +56 -0
- package/docs/server.telemetry.initializesentry.md +74 -0
- package/docs/server.telemetry.md +126 -0
- package/docs/server.telemetry.sentry.md +23 -0
- package/docs/server.telemetry.startspan.md +91 -0
- package/docs/server.telemetryspanoperation.md +244 -0
- package/docs/server.telemetryspanoptions.md +18 -0
- package/docs/server.world.md +0 -21
- package/node-server.mjs +172 -170
- package/package.json +1 -1
- package/server.api.json +670 -737
- package/server.d.ts +153 -145
- package/docs/server.array3number.md +0 -13
- package/docs/server.array4number.md +0 -13
- package/docs/server.blocktype.blocktyperegistry.md +0 -13
- package/docs/server.chunk.chunklattice.md +0 -13
- package/docs/server.chunklattice.world.md +0 -13
- package/docs/server.tickallocator.getarray.md +0 -72
- package/docs/server.tickallocator.getarray3number.md +0 -56
- package/docs/server.tickallocator.getarray4number.md +0 -56
- package/docs/server.tickallocator.getobject.md +0 -72
- package/docs/server.tickallocator.getset.md +0 -72
- package/docs/server.tickallocator.map.md +0 -72
- package/docs/server.tickallocator.md +0 -149
- package/docs/server.tickallocator.reset.md +0 -17
- package/docs/server.world.tickallocator.md +0 -13
|
@@ -9,45 +9,8 @@ Retrieves all loaded audio instances for the world.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllAudios(
|
|
12
|
+
getAllAudios(): 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>
|
|
50
|
-
|
|
51
14
|
**Returns:**
|
|
52
15
|
|
|
53
16
|
[Audio](./server.audio.md)<!-- -->\[\]
|
|
@@ -9,7 +9,7 @@ Creates a new block type instance.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
constructor(
|
|
12
|
+
constructor(options?: BlockTypeOptions);
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Parameters
|
|
@@ -32,20 +32,6 @@ 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
|
-
|
|
49
35
|
options
|
|
50
36
|
|
|
51
37
|
|
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)(
|
|
61
|
+
[(constructor)(options)](./server.blocktype._constructor_.md)
|
|
62
62
|
|
|
63
63
|
|
|
64
64
|
</td><td>
|
|
@@ -97,27 +97,6 @@ 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
|
-
|
|
121
100
|
[colliderOptions](./server.blocktype.collideroptions.md)
|
|
122
101
|
|
|
123
102
|
|
|
@@ -9,45 +9,8 @@ Get all registered block types.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllBlockTypes(
|
|
12
|
+
getAllBlockTypes(): 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>
|
|
50
|
-
|
|
51
14
|
**Returns:**
|
|
52
15
|
|
|
53
16
|
[BlockType](./server.blocktype.md)<!-- -->\[\]
|
|
@@ -9,7 +9,7 @@ Creates a new chunk instance.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
constructor(
|
|
12
|
+
constructor(originCoordinate: Vector3Like);
|
|
13
13
|
```
|
|
14
14
|
|
|
15
15
|
## Parameters
|
|
@@ -32,20 +32,6 @@ 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
|
-
|
|
49
35
|
originCoordinate
|
|
50
36
|
|
|
51
37
|
|
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)(
|
|
40
|
+
[(constructor)(originCoordinate)](./server.chunk._constructor_.md)
|
|
41
41
|
|
|
42
42
|
|
|
43
43
|
</td><td>
|
|
@@ -94,27 +94,6 @@ 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
|
-
|
|
118
97
|
</td></tr>
|
|
119
98
|
<tr><td>
|
|
120
99
|
|
|
@@ -9,45 +9,8 @@ Get all chunks in the lattice.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllChunks(
|
|
12
|
+
getAllChunks(): 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>
|
|
50
|
-
|
|
51
14
|
**Returns:**
|
|
52
15
|
|
|
53
16
|
[Chunk](./server.chunk.md)<!-- -->\[\]
|
|
@@ -94,27 +94,6 @@ 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
|
-
|
|
118
97
|
</td></tr>
|
|
119
98
|
</tbody></table>
|
|
120
99
|
|
|
@@ -152,7 +131,7 @@ Removes and clears all chunks and their blocks from the lattice.
|
|
|
152
131
|
</td></tr>
|
|
153
132
|
<tr><td>
|
|
154
133
|
|
|
155
|
-
[getAllChunks(
|
|
134
|
+
[getAllChunks()](./server.chunklattice.getallchunks.md)
|
|
156
135
|
|
|
157
136
|
|
|
158
137
|
</td><td>
|
|
@@ -0,0 +1,16 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [ChunkLatticeEventPayloads](./server.chunklatticeeventpayloads.md) > ["CHUNK\_LATTICE.ADD\_CHUNK"](./server.chunklatticeeventpayloads._chunk_lattice.add_chunk_.md)
|
|
4
|
+
|
|
5
|
+
## ChunkLatticeEventPayloads."CHUNK\_LATTICE.ADD\_CHUNK" property
|
|
6
|
+
|
|
7
|
+
Emitted when a chunk is added to the lattice.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
[ChunkLatticeEvent.ADD_CHUNK]: {
|
|
13
|
+
chunkLattice: ChunkLattice;
|
|
14
|
+
chunk: Chunk;
|
|
15
|
+
};
|
|
16
|
+
```
|
|
@@ -37,6 +37,25 @@ Description
|
|
|
37
37
|
</th></tr></thead>
|
|
38
38
|
<tbody><tr><td>
|
|
39
39
|
|
|
40
|
+
["CHUNK\_LATTICE.ADD\_CHUNK"](./server.chunklatticeeventpayloads._chunk_lattice.add_chunk_.md)
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
|
|
46
|
+
</td><td>
|
|
47
|
+
|
|
48
|
+
{ chunkLattice: [ChunkLattice](./server.chunklattice.md)<!-- -->; chunk: [Chunk](./server.chunk.md)<!-- -->; }
|
|
49
|
+
|
|
50
|
+
|
|
51
|
+
</td><td>
|
|
52
|
+
|
|
53
|
+
Emitted when a chunk is added to the lattice.
|
|
54
|
+
|
|
55
|
+
|
|
56
|
+
</td></tr>
|
|
57
|
+
<tr><td>
|
|
58
|
+
|
|
40
59
|
["CHUNK\_LATTICE.REMOVE\_CHUNK"](./server.chunklatticeeventpayloads._chunk_lattice.remove_chunk_.md)
|
|
41
60
|
|
|
42
61
|
|
|
@@ -9,45 +9,8 @@ Gets all spawned entities in the world.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllEntities(
|
|
12
|
+
getAllEntities(): 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>
|
|
50
|
-
|
|
51
14
|
**Returns:**
|
|
52
15
|
|
|
53
16
|
[Entity](./server.entity.md)<!-- -->\[\]
|
|
@@ -9,45 +9,8 @@ Retrieves all spawned Light instances for the world.
|
|
|
9
9
|
**Signature:**
|
|
10
10
|
|
|
11
11
|
```typescript
|
|
12
|
-
getAllLights(
|
|
12
|
+
getAllLights(): 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>
|
|
50
|
-
|
|
51
14
|
**Returns:**
|
|
52
15
|
|
|
53
16
|
[Light](./server.light.md)<!-- -->\[\]
|
package/docs/server.md
CHANGED
|
@@ -448,12 +448,12 @@ Represents the physics simulation for a world.
|
|
|
448
448
|
</td></tr>
|
|
449
449
|
<tr><td>
|
|
450
450
|
|
|
451
|
-
[
|
|
451
|
+
[Telemetry](./server.telemetry.md)
|
|
452
452
|
|
|
453
453
|
|
|
454
454
|
</td><td>
|
|
455
455
|
|
|
456
|
-
|
|
456
|
+
Manages performance telemetry and error tracking through your Sentry.io account.
|
|
457
457
|
|
|
458
458
|
|
|
459
459
|
</td></tr>
|
|
@@ -794,6 +794,17 @@ Event types a SceneUI instance can emit. See [SceneUIEventPayloads](./server.sce
|
|
|
794
794
|
Event types a Simulation instance can emit. See [SimulationEventPayloads](./server.simulationeventpayloads.md) for the payloads.
|
|
795
795
|
|
|
796
796
|
|
|
797
|
+
</td></tr>
|
|
798
|
+
<tr><td>
|
|
799
|
+
|
|
800
|
+
[TelemetrySpanOperation](./server.telemetryspanoperation.md)
|
|
801
|
+
|
|
802
|
+
|
|
803
|
+
</td><td>
|
|
804
|
+
|
|
805
|
+
Performance telemetry span operation types.
|
|
806
|
+
|
|
807
|
+
|
|
797
808
|
</td></tr>
|
|
798
809
|
<tr><td>
|
|
799
810
|
|
|
@@ -1272,7 +1283,7 @@ A quaternion.
|
|
|
1272
1283
|
|
|
1273
1284
|
</td><td>
|
|
1274
1285
|
|
|
1275
|
-
A RGB color.
|
|
1286
|
+
A RGB color. r, g and b expect a value between 0 and 255.
|
|
1276
1287
|
|
|
1277
1288
|
|
|
1278
1289
|
</td></tr>
|
|
@@ -1528,28 +1539,6 @@ Description
|
|
|
1528
1539
|
</th></tr></thead>
|
|
1529
1540
|
<tbody><tr><td>
|
|
1530
1541
|
|
|
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
|
-
|
|
1553
1542
|
[ColliderOptions](./server.collideroptions.md)
|
|
1554
1543
|
|
|
1555
1544
|
|
|
@@ -1899,6 +1888,17 @@ Additional mass properties for a RigidBody.
|
|
|
1899
1888
|
The options for a rigid body.
|
|
1900
1889
|
|
|
1901
1890
|
|
|
1891
|
+
</td></tr>
|
|
1892
|
+
<tr><td>
|
|
1893
|
+
|
|
1894
|
+
[TelemetrySpanOptions](./server.telemetryspanoptions.md)
|
|
1895
|
+
|
|
1896
|
+
|
|
1897
|
+
</td><td>
|
|
1898
|
+
|
|
1899
|
+
Options for creating a telemetry span.
|
|
1900
|
+
|
|
1901
|
+
|
|
1902
1902
|
</td></tr>
|
|
1903
1903
|
<tr><td>
|
|
1904
1904
|
|
|
@@ -0,0 +1,54 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [ParticleEmitter](./server.particleemitter.md) > [burst](./server.particleemitter.burst.md)
|
|
4
|
+
|
|
5
|
+
## ParticleEmitter.burst() method
|
|
6
|
+
|
|
7
|
+
Creates a burst of particles, regardless of pause state.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
burst(count: number): void;
|
|
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
|
+
count
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
number
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
The number of particles to burst.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
50
|
+
|
|
51
|
+
**Returns:**
|
|
52
|
+
|
|
53
|
+
void
|
|
54
|
+
|
|
@@ -806,6 +806,20 @@ Description
|
|
|
806
806
|
</th></tr></thead>
|
|
807
807
|
<tbody><tr><td>
|
|
808
808
|
|
|
809
|
+
[burst(count)](./server.particleemitter.burst.md)
|
|
810
|
+
|
|
811
|
+
|
|
812
|
+
</td><td>
|
|
813
|
+
|
|
814
|
+
|
|
815
|
+
</td><td>
|
|
816
|
+
|
|
817
|
+
Creates a burst of particles, regardless of pause state.
|
|
818
|
+
|
|
819
|
+
|
|
820
|
+
</td></tr>
|
|
821
|
+
<tr><td>
|
|
822
|
+
|
|
809
823
|
[despawn()](./server.particleemitter.despawn.md)
|
|
810
824
|
|
|
811
825
|
|