hytopia 0.14.43 → 0.14.45
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/docs/server.baseentityoptions.emissivecolor.md +13 -0
- package/docs/server.baseentityoptions.emissiveintensity.md +13 -0
- package/docs/server.baseentityoptions.md +38 -0
- package/docs/server.entity.emissivecolor.md +13 -0
- package/docs/server.entity.emissiveintensity.md +13 -0
- package/docs/server.entity.md +133 -0
- package/docs/server.entity.modelnodeoverrides.md +13 -0
- package/docs/server.entity.setemissivecolor.md +53 -0
- package/docs/server.entity.setemissiveintensity.md +53 -0
- package/docs/server.entity.setmodelnodeemissivecolor.md +69 -0
- package/docs/server.entity.setmodelnodeemissiveintensity.md +69 -0
- package/docs/server.entity.setmodelnodeoverride.md +53 -0
- package/docs/server.entityevent.md +42 -0
- package/docs/server.entityeventpayloads._entity.set_emissive_color_.md +16 -0
- package/docs/server.entityeventpayloads._entity.set_emissive_intensity_.md +16 -0
- package/docs/server.entityeventpayloads._entity.set_model_node_override_.md +16 -0
- package/docs/server.entityeventpayloads.md +57 -0
- package/docs/server.modelentityoptions.md +19 -0
- package/docs/server.modelentityoptions.modelnodeoverrides.md +13 -0
- package/package.json +1 -1
- package/server.api.json +722 -18
- package/server.d.ts +70 -0
- package/server.mjs +92 -92
|
@@ -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) > [BaseEntityOptions](./server.baseentityoptions.md) > [emissiveColor](./server.baseentityoptions.emissivecolor.md)
|
|
4
|
+
|
|
5
|
+
## BaseEntityOptions.emissiveColor property
|
|
6
|
+
|
|
7
|
+
The emissive color of the entity.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
emissiveColor?: RgbColor;
|
|
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) > [BaseEntityOptions](./server.baseentityoptions.md) > [emissiveIntensity](./server.baseentityoptions.emissiveintensity.md)
|
|
4
|
+
|
|
5
|
+
## BaseEntityOptions.emissiveIntensity property
|
|
6
|
+
|
|
7
|
+
The emissive intensity of the entity. Use a value over 1 for brighter emissive effects.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
emissiveIntensity?: number;
|
|
13
|
+
```
|
|
@@ -53,6 +53,44 @@ Description
|
|
|
53
53
|
_(Optional)_ The entity controller to use for the entity.
|
|
54
54
|
|
|
55
55
|
|
|
56
|
+
</td></tr>
|
|
57
|
+
<tr><td>
|
|
58
|
+
|
|
59
|
+
[emissiveColor?](./server.baseentityoptions.emissivecolor.md)
|
|
60
|
+
|
|
61
|
+
|
|
62
|
+
</td><td>
|
|
63
|
+
|
|
64
|
+
|
|
65
|
+
</td><td>
|
|
66
|
+
|
|
67
|
+
[RgbColor](./server.rgbcolor.md)
|
|
68
|
+
|
|
69
|
+
|
|
70
|
+
</td><td>
|
|
71
|
+
|
|
72
|
+
_(Optional)_ The emissive color of the entity.
|
|
73
|
+
|
|
74
|
+
|
|
75
|
+
</td></tr>
|
|
76
|
+
<tr><td>
|
|
77
|
+
|
|
78
|
+
[emissiveIntensity?](./server.baseentityoptions.emissiveintensity.md)
|
|
79
|
+
|
|
80
|
+
|
|
81
|
+
</td><td>
|
|
82
|
+
|
|
83
|
+
|
|
84
|
+
</td><td>
|
|
85
|
+
|
|
86
|
+
number
|
|
87
|
+
|
|
88
|
+
|
|
89
|
+
</td><td>
|
|
90
|
+
|
|
91
|
+
_(Optional)_ The emissive intensity of the entity. Use a value over 1 for brighter emissive effects.
|
|
92
|
+
|
|
93
|
+
|
|
56
94
|
</td></tr>
|
|
57
95
|
<tr><td>
|
|
58
96
|
|
|
@@ -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) > [Entity](./server.entity.md) > [emissiveColor](./server.entity.emissivecolor.md)
|
|
4
|
+
|
|
5
|
+
## Entity.emissiveColor property
|
|
6
|
+
|
|
7
|
+
The emissive color of the entity.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
get emissiveColor(): RgbColor | undefined;
|
|
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) > [Entity](./server.entity.md) > [emissiveIntensity](./server.entity.emissiveintensity.md)
|
|
4
|
+
|
|
5
|
+
## Entity.emissiveIntensity property
|
|
6
|
+
|
|
7
|
+
The emissive intensity of the entity.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
get emissiveIntensity(): number | undefined;
|
|
13
|
+
```
|
package/docs/server.entity.md
CHANGED
|
@@ -189,6 +189,48 @@ number
|
|
|
189
189
|
The depth (z-axis) of the entity's model with scale consideration or block entity's y\*2 half extents.
|
|
190
190
|
|
|
191
191
|
|
|
192
|
+
</td></tr>
|
|
193
|
+
<tr><td>
|
|
194
|
+
|
|
195
|
+
[emissiveColor](./server.entity.emissivecolor.md)
|
|
196
|
+
|
|
197
|
+
|
|
198
|
+
</td><td>
|
|
199
|
+
|
|
200
|
+
`readonly`
|
|
201
|
+
|
|
202
|
+
|
|
203
|
+
</td><td>
|
|
204
|
+
|
|
205
|
+
[RgbColor](./server.rgbcolor.md) \| undefined
|
|
206
|
+
|
|
207
|
+
|
|
208
|
+
</td><td>
|
|
209
|
+
|
|
210
|
+
The emissive color of the entity.
|
|
211
|
+
|
|
212
|
+
|
|
213
|
+
</td></tr>
|
|
214
|
+
<tr><td>
|
|
215
|
+
|
|
216
|
+
[emissiveIntensity](./server.entity.emissiveintensity.md)
|
|
217
|
+
|
|
218
|
+
|
|
219
|
+
</td><td>
|
|
220
|
+
|
|
221
|
+
`readonly`
|
|
222
|
+
|
|
223
|
+
|
|
224
|
+
</td><td>
|
|
225
|
+
|
|
226
|
+
number \| undefined
|
|
227
|
+
|
|
228
|
+
|
|
229
|
+
</td><td>
|
|
230
|
+
|
|
231
|
+
The emissive intensity of the entity.
|
|
232
|
+
|
|
233
|
+
|
|
192
234
|
</td></tr>
|
|
193
235
|
<tr><td>
|
|
194
236
|
|
|
@@ -378,6 +420,27 @@ ReadonlySet<string>
|
|
|
378
420
|
The looped animations to start when the entity is spawned.
|
|
379
421
|
|
|
380
422
|
|
|
423
|
+
</td></tr>
|
|
424
|
+
<tr><td>
|
|
425
|
+
|
|
426
|
+
[modelNodeOverrides](./server.entity.modelnodeoverrides.md)
|
|
427
|
+
|
|
428
|
+
|
|
429
|
+
</td><td>
|
|
430
|
+
|
|
431
|
+
`readonly`
|
|
432
|
+
|
|
433
|
+
|
|
434
|
+
</td><td>
|
|
435
|
+
|
|
436
|
+
ReadonlyMap<string, Readonly<ModelNodeOverride>>
|
|
437
|
+
|
|
438
|
+
|
|
439
|
+
</td><td>
|
|
440
|
+
|
|
441
|
+
The node overrides of the entity's model. Mapped by name to the model node override.
|
|
442
|
+
|
|
443
|
+
|
|
381
444
|
</td></tr>
|
|
382
445
|
<tr><td>
|
|
383
446
|
|
|
@@ -713,6 +776,34 @@ Triggers an interaction on the entity from a player.
|
|
|
713
776
|
Sets the controller for the entity.
|
|
714
777
|
|
|
715
778
|
|
|
779
|
+
</td></tr>
|
|
780
|
+
<tr><td>
|
|
781
|
+
|
|
782
|
+
[setEmissiveColor(emissiveColor)](./server.entity.setemissivecolor.md)
|
|
783
|
+
|
|
784
|
+
|
|
785
|
+
</td><td>
|
|
786
|
+
|
|
787
|
+
|
|
788
|
+
</td><td>
|
|
789
|
+
|
|
790
|
+
Sets the emissive color of the entity.
|
|
791
|
+
|
|
792
|
+
|
|
793
|
+
</td></tr>
|
|
794
|
+
<tr><td>
|
|
795
|
+
|
|
796
|
+
[setEmissiveIntensity(emissiveIntensity)](./server.entity.setemissiveintensity.md)
|
|
797
|
+
|
|
798
|
+
|
|
799
|
+
</td><td>
|
|
800
|
+
|
|
801
|
+
|
|
802
|
+
</td><td>
|
|
803
|
+
|
|
804
|
+
Sets the emissive intensity of the entity.
|
|
805
|
+
|
|
806
|
+
|
|
716
807
|
</td></tr>
|
|
717
808
|
<tr><td>
|
|
718
809
|
|
|
@@ -741,6 +832,48 @@ Sets the playback rate of all animations on the entity's model.
|
|
|
741
832
|
Sets the nodes to hide on the entity's model. Matched nodes will be hidden for all players. Uses case insensitive substring matching.
|
|
742
833
|
|
|
743
834
|
|
|
835
|
+
</td></tr>
|
|
836
|
+
<tr><td>
|
|
837
|
+
|
|
838
|
+
[setModelNodeEmissiveColor(name, emissiveColor)](./server.entity.setmodelnodeemissivecolor.md)
|
|
839
|
+
|
|
840
|
+
|
|
841
|
+
</td><td>
|
|
842
|
+
|
|
843
|
+
|
|
844
|
+
</td><td>
|
|
845
|
+
|
|
846
|
+
Sets the emissive color of a node on the entity's model.
|
|
847
|
+
|
|
848
|
+
|
|
849
|
+
</td></tr>
|
|
850
|
+
<tr><td>
|
|
851
|
+
|
|
852
|
+
[setModelNodeEmissiveIntensity(name, emissiveIntensity)](./server.entity.setmodelnodeemissiveintensity.md)
|
|
853
|
+
|
|
854
|
+
|
|
855
|
+
</td><td>
|
|
856
|
+
|
|
857
|
+
|
|
858
|
+
</td><td>
|
|
859
|
+
|
|
860
|
+
Sets the emissive intensity of a node on the entity's model.
|
|
861
|
+
|
|
862
|
+
|
|
863
|
+
</td></tr>
|
|
864
|
+
<tr><td>
|
|
865
|
+
|
|
866
|
+
[setModelNodeOverride(modelNodeOverride)](./server.entity.setmodelnodeoverride.md)
|
|
867
|
+
|
|
868
|
+
|
|
869
|
+
</td><td>
|
|
870
|
+
|
|
871
|
+
|
|
872
|
+
</td><td>
|
|
873
|
+
|
|
874
|
+
Sets a node override for the entity's model.
|
|
875
|
+
|
|
876
|
+
|
|
744
877
|
</td></tr>
|
|
745
878
|
<tr><td>
|
|
746
879
|
|
|
@@ -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) > [Entity](./server.entity.md) > [modelNodeOverrides](./server.entity.modelnodeoverrides.md)
|
|
4
|
+
|
|
5
|
+
## Entity.modelNodeOverrides property
|
|
6
|
+
|
|
7
|
+
The node overrides of the entity's model. Mapped by name to the model node override.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
get modelNodeOverrides(): ReadonlyMap<string, Readonly<ModelNodeOverride>>;
|
|
13
|
+
```
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [Entity](./server.entity.md) > [setEmissiveColor](./server.entity.setemissivecolor.md)
|
|
4
|
+
|
|
5
|
+
## Entity.setEmissiveColor() method
|
|
6
|
+
|
|
7
|
+
Sets the emissive color of the entity.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
setEmissiveColor(emissiveColor: RgbColor | undefined): 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
|
+
emissiveColor
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
[RgbColor](./server.rgbcolor.md) \| undefined
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
The emissive color of the entity.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
50
|
+
**Returns:**
|
|
51
|
+
|
|
52
|
+
void
|
|
53
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [Entity](./server.entity.md) > [setEmissiveIntensity](./server.entity.setemissiveintensity.md)
|
|
4
|
+
|
|
5
|
+
## Entity.setEmissiveIntensity() method
|
|
6
|
+
|
|
7
|
+
Sets the emissive intensity of the entity.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
setEmissiveIntensity(emissiveIntensity: number | undefined): 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
|
+
emissiveIntensity
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
number \| undefined
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
The emissive intensity of the entity. Use a value over 1 for brighter emissive effects.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
50
|
+
**Returns:**
|
|
51
|
+
|
|
52
|
+
void
|
|
53
|
+
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [Entity](./server.entity.md) > [setModelNodeEmissiveColor](./server.entity.setmodelnodeemissivecolor.md)
|
|
4
|
+
|
|
5
|
+
## Entity.setModelNodeEmissiveColor() method
|
|
6
|
+
|
|
7
|
+
Sets the emissive color of a node on the entity's model.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
setModelNodeEmissiveColor(name: string, emissiveColor: RgbColor | undefined): 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
|
+
name
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
string
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
The name of the node to override. Matching is case insensitive, prioritizing exact match then falling back to substring match.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
<tr><td>
|
|
50
|
+
|
|
51
|
+
emissiveColor
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
</td><td>
|
|
55
|
+
|
|
56
|
+
[RgbColor](./server.rgbcolor.md) \| undefined
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
</td><td>
|
|
60
|
+
|
|
61
|
+
The emissive color of the node.
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
</td></tr>
|
|
65
|
+
</tbody></table>
|
|
66
|
+
**Returns:**
|
|
67
|
+
|
|
68
|
+
void
|
|
69
|
+
|
|
@@ -0,0 +1,69 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [Entity](./server.entity.md) > [setModelNodeEmissiveIntensity](./server.entity.setmodelnodeemissiveintensity.md)
|
|
4
|
+
|
|
5
|
+
## Entity.setModelNodeEmissiveIntensity() method
|
|
6
|
+
|
|
7
|
+
Sets the emissive intensity of a node on the entity's model.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
setModelNodeEmissiveIntensity(name: string, emissiveIntensity: number | undefined): 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
|
+
name
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
string
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
The name of the node to override. Matching is case insensitive, prioritizing exact match then falling back to substring match.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
<tr><td>
|
|
50
|
+
|
|
51
|
+
emissiveIntensity
|
|
52
|
+
|
|
53
|
+
|
|
54
|
+
</td><td>
|
|
55
|
+
|
|
56
|
+
number \| undefined
|
|
57
|
+
|
|
58
|
+
|
|
59
|
+
</td><td>
|
|
60
|
+
|
|
61
|
+
The emissive intensity of the node. Use a value over 1 for brighter emissive effects.
|
|
62
|
+
|
|
63
|
+
|
|
64
|
+
</td></tr>
|
|
65
|
+
</tbody></table>
|
|
66
|
+
**Returns:**
|
|
67
|
+
|
|
68
|
+
void
|
|
69
|
+
|
|
@@ -0,0 +1,53 @@
|
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
|
2
|
+
|
|
3
|
+
[Home](./index.md) > [server](./server.md) > [Entity](./server.entity.md) > [setModelNodeOverride](./server.entity.setmodelnodeoverride.md)
|
|
4
|
+
|
|
5
|
+
## Entity.setModelNodeOverride() method
|
|
6
|
+
|
|
7
|
+
Sets a node override for the entity's model.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
setModelNodeOverride(modelNodeOverride: ModelNodeOverride): 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
|
+
modelNodeOverride
|
|
36
|
+
|
|
37
|
+
|
|
38
|
+
</td><td>
|
|
39
|
+
|
|
40
|
+
ModelNodeOverride
|
|
41
|
+
|
|
42
|
+
|
|
43
|
+
</td><td>
|
|
44
|
+
|
|
45
|
+
The model node override to set.
|
|
46
|
+
|
|
47
|
+
|
|
48
|
+
</td></tr>
|
|
49
|
+
</tbody></table>
|
|
50
|
+
**Returns:**
|
|
51
|
+
|
|
52
|
+
void
|
|
53
|
+
|
|
@@ -113,6 +113,34 @@ INTERACT
|
|
|
113
113
|
</td><td>
|
|
114
114
|
|
|
115
115
|
|
|
116
|
+
</td></tr>
|
|
117
|
+
<tr><td>
|
|
118
|
+
|
|
119
|
+
SET\_EMISSIVE\_COLOR
|
|
120
|
+
|
|
121
|
+
|
|
122
|
+
</td><td>
|
|
123
|
+
|
|
124
|
+
`"ENTITY.SET_EMISSIVE_COLOR"`
|
|
125
|
+
|
|
126
|
+
|
|
127
|
+
</td><td>
|
|
128
|
+
|
|
129
|
+
|
|
130
|
+
</td></tr>
|
|
131
|
+
<tr><td>
|
|
132
|
+
|
|
133
|
+
SET\_EMISSIVE\_INTENSITY
|
|
134
|
+
|
|
135
|
+
|
|
136
|
+
</td><td>
|
|
137
|
+
|
|
138
|
+
`"ENTITY.SET_EMISSIVE_INTENSITY"`
|
|
139
|
+
|
|
140
|
+
|
|
141
|
+
</td><td>
|
|
142
|
+
|
|
143
|
+
|
|
116
144
|
</td></tr>
|
|
117
145
|
<tr><td>
|
|
118
146
|
|
|
@@ -141,6 +169,20 @@ SET\_MODEL\_HIDDEN\_NODES
|
|
|
141
169
|
</td><td>
|
|
142
170
|
|
|
143
171
|
|
|
172
|
+
</td></tr>
|
|
173
|
+
<tr><td>
|
|
174
|
+
|
|
175
|
+
SET\_MODEL\_NODE\_OVERRIDE
|
|
176
|
+
|
|
177
|
+
|
|
178
|
+
</td><td>
|
|
179
|
+
|
|
180
|
+
`"ENTITY.SET_MODEL_NODE_OVERRIDE"`
|
|
181
|
+
|
|
182
|
+
|
|
183
|
+
</td><td>
|
|
184
|
+
|
|
185
|
+
|
|
144
186
|
</td></tr>
|
|
145
187
|
<tr><td>
|
|
146
188
|
|
|
@@ -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) > [EntityEventPayloads](./server.entityeventpayloads.md) > ["ENTITY.SET\_EMISSIVE\_COLOR"](./server.entityeventpayloads._entity.set_emissive_color_.md)
|
|
4
|
+
|
|
5
|
+
## EntityEventPayloads."ENTITY.SET\_EMISSIVE\_COLOR" property
|
|
6
|
+
|
|
7
|
+
Emitted when the emissive color is set.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
[EntityEvent.SET_EMISSIVE_COLOR]: {
|
|
13
|
+
entity: Entity;
|
|
14
|
+
emissiveColor: RgbColor | undefined;
|
|
15
|
+
};
|
|
16
|
+
```
|
|
@@ -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) > [EntityEventPayloads](./server.entityeventpayloads.md) > ["ENTITY.SET\_EMISSIVE\_INTENSITY"](./server.entityeventpayloads._entity.set_emissive_intensity_.md)
|
|
4
|
+
|
|
5
|
+
## EntityEventPayloads."ENTITY.SET\_EMISSIVE\_INTENSITY" property
|
|
6
|
+
|
|
7
|
+
Emitted when the emissive intensity is set.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
[EntityEvent.SET_EMISSIVE_INTENSITY]: {
|
|
13
|
+
entity: Entity;
|
|
14
|
+
emissiveIntensity: number | undefined;
|
|
15
|
+
};
|
|
16
|
+
```
|
|
@@ -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) > [EntityEventPayloads](./server.entityeventpayloads.md) > ["ENTITY.SET\_MODEL\_NODE\_OVERRIDE"](./server.entityeventpayloads._entity.set_model_node_override_.md)
|
|
4
|
+
|
|
5
|
+
## EntityEventPayloads."ENTITY.SET\_MODEL\_NODE\_OVERRIDE" property
|
|
6
|
+
|
|
7
|
+
Emitted when a node override of the entity's model is set or updated.
|
|
8
|
+
|
|
9
|
+
**Signature:**
|
|
10
|
+
|
|
11
|
+
```typescript
|
|
12
|
+
[EntityEvent.SET_MODEL_NODE_OVERRIDE]: {
|
|
13
|
+
entity: Entity;
|
|
14
|
+
modelNodeOverride: ModelNodeOverride;
|
|
15
|
+
};
|
|
16
|
+
```
|