hytopia 0.7.1 → 0.7.2
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 +94 -94
- 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.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/node-server.mjs +124 -124
- package/package.json +1 -1
- package/server.api.json +512 -74
- package/server.d.ts +66 -25
- package/docs/server.particleemitter.isstopped.md +0 -13
- package/docs/server.particleemitter.size.md +0 -13
- package/docs/server.particleemittereventpayloads._particle_emitter.set_size_.md +0 -16
- package/docs/server.particleemittereventpayloads._particle_emitter.set_size_variance_.md +0 -16
- package/docs/server.particleemitteroptions.size.md +0 -13
- package/docs/server.particleemitteroptions.sizevariance.md +0 -13
package/server.api.json
CHANGED
|
@@ -28995,36 +28995,6 @@
|
|
|
28995
28995
|
"isProtected": false,
|
|
28996
28996
|
"isAbstract": false
|
|
28997
28997
|
},
|
|
28998
|
-
{
|
|
28999
|
-
"kind": "Property",
|
|
29000
|
-
"canonicalReference": "server!ParticleEmitter#isStopped:member",
|
|
29001
|
-
"docComment": "/**\n * Whether the ParticleEmitter is stopped.\n */\n",
|
|
29002
|
-
"excerptTokens": [
|
|
29003
|
-
{
|
|
29004
|
-
"kind": "Content",
|
|
29005
|
-
"text": "get isStopped(): "
|
|
29006
|
-
},
|
|
29007
|
-
{
|
|
29008
|
-
"kind": "Content",
|
|
29009
|
-
"text": "boolean"
|
|
29010
|
-
},
|
|
29011
|
-
{
|
|
29012
|
-
"kind": "Content",
|
|
29013
|
-
"text": ";"
|
|
29014
|
-
}
|
|
29015
|
-
],
|
|
29016
|
-
"isReadonly": true,
|
|
29017
|
-
"isOptional": false,
|
|
29018
|
-
"releaseTag": "Public",
|
|
29019
|
-
"name": "isStopped",
|
|
29020
|
-
"propertyTypeTokenRange": {
|
|
29021
|
-
"startIndex": 1,
|
|
29022
|
-
"endIndex": 2
|
|
29023
|
-
},
|
|
29024
|
-
"isStatic": false,
|
|
29025
|
-
"isProtected": false,
|
|
29026
|
-
"isAbstract": false
|
|
29027
|
-
},
|
|
29028
28998
|
{
|
|
29029
28999
|
"kind": "Property",
|
|
29030
29000
|
"canonicalReference": "server!ParticleEmitter#lifetime:member",
|
|
@@ -29270,6 +29240,36 @@
|
|
|
29270
29240
|
"isProtected": false,
|
|
29271
29241
|
"isAbstract": false
|
|
29272
29242
|
},
|
|
29243
|
+
{
|
|
29244
|
+
"kind": "Property",
|
|
29245
|
+
"canonicalReference": "server!ParticleEmitter#paused:member",
|
|
29246
|
+
"docComment": "/**\n * Whether an emitted particle is being paused.\n */\n",
|
|
29247
|
+
"excerptTokens": [
|
|
29248
|
+
{
|
|
29249
|
+
"kind": "Content",
|
|
29250
|
+
"text": "get paused(): "
|
|
29251
|
+
},
|
|
29252
|
+
{
|
|
29253
|
+
"kind": "Content",
|
|
29254
|
+
"text": "boolean | undefined"
|
|
29255
|
+
},
|
|
29256
|
+
{
|
|
29257
|
+
"kind": "Content",
|
|
29258
|
+
"text": ";"
|
|
29259
|
+
}
|
|
29260
|
+
],
|
|
29261
|
+
"isReadonly": true,
|
|
29262
|
+
"isOptional": false,
|
|
29263
|
+
"releaseTag": "Public",
|
|
29264
|
+
"name": "paused",
|
|
29265
|
+
"propertyTypeTokenRange": {
|
|
29266
|
+
"startIndex": 1,
|
|
29267
|
+
"endIndex": 2
|
|
29268
|
+
},
|
|
29269
|
+
"isStatic": false,
|
|
29270
|
+
"isProtected": false,
|
|
29271
|
+
"isAbstract": false
|
|
29272
|
+
},
|
|
29273
29273
|
{
|
|
29274
29274
|
"kind": "Property",
|
|
29275
29275
|
"canonicalReference": "server!ParticleEmitter#position:member",
|
|
@@ -29403,7 +29403,7 @@
|
|
|
29403
29403
|
{
|
|
29404
29404
|
"kind": "Method",
|
|
29405
29405
|
"canonicalReference": "server!ParticleEmitter#restart:member(1)",
|
|
29406
|
-
"docComment": "/**\n * Restarts the particle emission if it was previously stopped
|
|
29406
|
+
"docComment": "/**\n * Restarts the particle emission if it was previously stopped.\n */\n",
|
|
29407
29407
|
"excerptTokens": [
|
|
29408
29408
|
{
|
|
29409
29409
|
"kind": "Content",
|
|
@@ -30402,12 +30402,108 @@
|
|
|
30402
30402
|
},
|
|
30403
30403
|
{
|
|
30404
30404
|
"kind": "Method",
|
|
30405
|
-
"canonicalReference": "server!ParticleEmitter#
|
|
30406
|
-
"docComment": "/**\n * Sets the size of an emitted particle.\n *\n * @param
|
|
30405
|
+
"canonicalReference": "server!ParticleEmitter#setSizeEnd:member(1)",
|
|
30406
|
+
"docComment": "/**\n * Sets the size at the end of an emitted particle's lifetime.\n *\n * @param sizeEnd - The size at the end of an emitted particle's lifetime.\n */\n",
|
|
30407
|
+
"excerptTokens": [
|
|
30408
|
+
{
|
|
30409
|
+
"kind": "Content",
|
|
30410
|
+
"text": "setSizeEnd(sizeEnd: "
|
|
30411
|
+
},
|
|
30412
|
+
{
|
|
30413
|
+
"kind": "Content",
|
|
30414
|
+
"text": "number"
|
|
30415
|
+
},
|
|
30416
|
+
{
|
|
30417
|
+
"kind": "Content",
|
|
30418
|
+
"text": "): "
|
|
30419
|
+
},
|
|
30420
|
+
{
|
|
30421
|
+
"kind": "Content",
|
|
30422
|
+
"text": "void"
|
|
30423
|
+
},
|
|
30424
|
+
{
|
|
30425
|
+
"kind": "Content",
|
|
30426
|
+
"text": ";"
|
|
30427
|
+
}
|
|
30428
|
+
],
|
|
30429
|
+
"isStatic": false,
|
|
30430
|
+
"returnTypeTokenRange": {
|
|
30431
|
+
"startIndex": 3,
|
|
30432
|
+
"endIndex": 4
|
|
30433
|
+
},
|
|
30434
|
+
"releaseTag": "Public",
|
|
30435
|
+
"isProtected": false,
|
|
30436
|
+
"overloadIndex": 1,
|
|
30437
|
+
"parameters": [
|
|
30438
|
+
{
|
|
30439
|
+
"parameterName": "sizeEnd",
|
|
30440
|
+
"parameterTypeTokenRange": {
|
|
30441
|
+
"startIndex": 1,
|
|
30442
|
+
"endIndex": 2
|
|
30443
|
+
},
|
|
30444
|
+
"isOptional": false
|
|
30445
|
+
}
|
|
30446
|
+
],
|
|
30447
|
+
"isOptional": false,
|
|
30448
|
+
"isAbstract": false,
|
|
30449
|
+
"name": "setSizeEnd"
|
|
30450
|
+
},
|
|
30451
|
+
{
|
|
30452
|
+
"kind": "Method",
|
|
30453
|
+
"canonicalReference": "server!ParticleEmitter#setSizeEndVariance:member(1)",
|
|
30454
|
+
"docComment": "/**\n * Sets the size variance at the end of an emitted particle's lifetime.\n *\n * @param sizeEndVariance - The size variance at the end of an emitted particle's lifetime.\n */\n",
|
|
30455
|
+
"excerptTokens": [
|
|
30456
|
+
{
|
|
30457
|
+
"kind": "Content",
|
|
30458
|
+
"text": "setSizeEndVariance(sizeEndVariance: "
|
|
30459
|
+
},
|
|
30460
|
+
{
|
|
30461
|
+
"kind": "Content",
|
|
30462
|
+
"text": "number"
|
|
30463
|
+
},
|
|
30464
|
+
{
|
|
30465
|
+
"kind": "Content",
|
|
30466
|
+
"text": "): "
|
|
30467
|
+
},
|
|
30468
|
+
{
|
|
30469
|
+
"kind": "Content",
|
|
30470
|
+
"text": "void"
|
|
30471
|
+
},
|
|
30472
|
+
{
|
|
30473
|
+
"kind": "Content",
|
|
30474
|
+
"text": ";"
|
|
30475
|
+
}
|
|
30476
|
+
],
|
|
30477
|
+
"isStatic": false,
|
|
30478
|
+
"returnTypeTokenRange": {
|
|
30479
|
+
"startIndex": 3,
|
|
30480
|
+
"endIndex": 4
|
|
30481
|
+
},
|
|
30482
|
+
"releaseTag": "Public",
|
|
30483
|
+
"isProtected": false,
|
|
30484
|
+
"overloadIndex": 1,
|
|
30485
|
+
"parameters": [
|
|
30486
|
+
{
|
|
30487
|
+
"parameterName": "sizeEndVariance",
|
|
30488
|
+
"parameterTypeTokenRange": {
|
|
30489
|
+
"startIndex": 1,
|
|
30490
|
+
"endIndex": 2
|
|
30491
|
+
},
|
|
30492
|
+
"isOptional": false
|
|
30493
|
+
}
|
|
30494
|
+
],
|
|
30495
|
+
"isOptional": false,
|
|
30496
|
+
"isAbstract": false,
|
|
30497
|
+
"name": "setSizeEndVariance"
|
|
30498
|
+
},
|
|
30499
|
+
{
|
|
30500
|
+
"kind": "Method",
|
|
30501
|
+
"canonicalReference": "server!ParticleEmitter#setSizeStart:member(1)",
|
|
30502
|
+
"docComment": "/**\n * Sets the size at the start of an emitted particle's lifetime.\n *\n * @param sizeStart - The size at the start of an emitted particle's lifetime.\n */\n",
|
|
30407
30503
|
"excerptTokens": [
|
|
30408
30504
|
{
|
|
30409
30505
|
"kind": "Content",
|
|
30410
|
-
"text": "
|
|
30506
|
+
"text": "setSizeStart(sizeStart: "
|
|
30411
30507
|
},
|
|
30412
30508
|
{
|
|
30413
30509
|
"kind": "Content",
|
|
@@ -30436,7 +30532,7 @@
|
|
|
30436
30532
|
"overloadIndex": 1,
|
|
30437
30533
|
"parameters": [
|
|
30438
30534
|
{
|
|
30439
|
-
"parameterName": "
|
|
30535
|
+
"parameterName": "sizeStart",
|
|
30440
30536
|
"parameterTypeTokenRange": {
|
|
30441
30537
|
"startIndex": 1,
|
|
30442
30538
|
"endIndex": 2
|
|
@@ -30446,16 +30542,16 @@
|
|
|
30446
30542
|
],
|
|
30447
30543
|
"isOptional": false,
|
|
30448
30544
|
"isAbstract": false,
|
|
30449
|
-
"name": "
|
|
30545
|
+
"name": "setSizeStart"
|
|
30450
30546
|
},
|
|
30451
30547
|
{
|
|
30452
30548
|
"kind": "Method",
|
|
30453
|
-
"canonicalReference": "server!ParticleEmitter#
|
|
30454
|
-
"docComment": "/**\n * Sets the size variance of an emitted particle.\n *\n * @param
|
|
30549
|
+
"canonicalReference": "server!ParticleEmitter#setSizeStartVariance:member(1)",
|
|
30550
|
+
"docComment": "/**\n * Sets the size variance at the start of an emitted particle's lifetime.\n *\n * @param sizeStartVariance - The size variance at the start of an emitted particle's lifetime.\n */\n",
|
|
30455
30551
|
"excerptTokens": [
|
|
30456
30552
|
{
|
|
30457
30553
|
"kind": "Content",
|
|
30458
|
-
"text": "
|
|
30554
|
+
"text": "setSizeStartVariance(sizeStartVariance: "
|
|
30459
30555
|
},
|
|
30460
30556
|
{
|
|
30461
30557
|
"kind": "Content",
|
|
@@ -30484,7 +30580,7 @@
|
|
|
30484
30580
|
"overloadIndex": 1,
|
|
30485
30581
|
"parameters": [
|
|
30486
30582
|
{
|
|
30487
|
-
"parameterName": "
|
|
30583
|
+
"parameterName": "sizeStartVariance",
|
|
30488
30584
|
"parameterTypeTokenRange": {
|
|
30489
30585
|
"startIndex": 1,
|
|
30490
30586
|
"endIndex": 2
|
|
@@ -30494,7 +30590,7 @@
|
|
|
30494
30590
|
],
|
|
30495
30591
|
"isOptional": false,
|
|
30496
30592
|
"isAbstract": false,
|
|
30497
|
-
"name": "
|
|
30593
|
+
"name": "setSizeStartVariance"
|
|
30498
30594
|
},
|
|
30499
30595
|
{
|
|
30500
30596
|
"kind": "Method",
|
|
@@ -30692,12 +30788,12 @@
|
|
|
30692
30788
|
},
|
|
30693
30789
|
{
|
|
30694
30790
|
"kind": "Property",
|
|
30695
|
-
"canonicalReference": "server!ParticleEmitter#
|
|
30696
|
-
"docComment": "/**\n * The size of an emitted particle.\n */\n",
|
|
30791
|
+
"canonicalReference": "server!ParticleEmitter#sizeEnd:member",
|
|
30792
|
+
"docComment": "/**\n * The size at the end of an emitted particle's lifetime.\n */\n",
|
|
30697
30793
|
"excerptTokens": [
|
|
30698
30794
|
{
|
|
30699
30795
|
"kind": "Content",
|
|
30700
|
-
"text": "get
|
|
30796
|
+
"text": "get sizeEnd(): "
|
|
30701
30797
|
},
|
|
30702
30798
|
{
|
|
30703
30799
|
"kind": "Content",
|
|
@@ -30711,7 +30807,97 @@
|
|
|
30711
30807
|
"isReadonly": true,
|
|
30712
30808
|
"isOptional": false,
|
|
30713
30809
|
"releaseTag": "Public",
|
|
30714
|
-
"name": "
|
|
30810
|
+
"name": "sizeEnd",
|
|
30811
|
+
"propertyTypeTokenRange": {
|
|
30812
|
+
"startIndex": 1,
|
|
30813
|
+
"endIndex": 2
|
|
30814
|
+
},
|
|
30815
|
+
"isStatic": false,
|
|
30816
|
+
"isProtected": false,
|
|
30817
|
+
"isAbstract": false
|
|
30818
|
+
},
|
|
30819
|
+
{
|
|
30820
|
+
"kind": "Property",
|
|
30821
|
+
"canonicalReference": "server!ParticleEmitter#sizeEndVariance:member",
|
|
30822
|
+
"docComment": "/**\n * The size variance at the end of an emitted particle's lifetime.\n */\n",
|
|
30823
|
+
"excerptTokens": [
|
|
30824
|
+
{
|
|
30825
|
+
"kind": "Content",
|
|
30826
|
+
"text": "get sizeEndVariance(): "
|
|
30827
|
+
},
|
|
30828
|
+
{
|
|
30829
|
+
"kind": "Content",
|
|
30830
|
+
"text": "number | undefined"
|
|
30831
|
+
},
|
|
30832
|
+
{
|
|
30833
|
+
"kind": "Content",
|
|
30834
|
+
"text": ";"
|
|
30835
|
+
}
|
|
30836
|
+
],
|
|
30837
|
+
"isReadonly": true,
|
|
30838
|
+
"isOptional": false,
|
|
30839
|
+
"releaseTag": "Public",
|
|
30840
|
+
"name": "sizeEndVariance",
|
|
30841
|
+
"propertyTypeTokenRange": {
|
|
30842
|
+
"startIndex": 1,
|
|
30843
|
+
"endIndex": 2
|
|
30844
|
+
},
|
|
30845
|
+
"isStatic": false,
|
|
30846
|
+
"isProtected": false,
|
|
30847
|
+
"isAbstract": false
|
|
30848
|
+
},
|
|
30849
|
+
{
|
|
30850
|
+
"kind": "Property",
|
|
30851
|
+
"canonicalReference": "server!ParticleEmitter#sizeStart:member",
|
|
30852
|
+
"docComment": "/**\n * The size at the start of an emitted particle's lifetime.\n */\n",
|
|
30853
|
+
"excerptTokens": [
|
|
30854
|
+
{
|
|
30855
|
+
"kind": "Content",
|
|
30856
|
+
"text": "get sizeStart(): "
|
|
30857
|
+
},
|
|
30858
|
+
{
|
|
30859
|
+
"kind": "Content",
|
|
30860
|
+
"text": "number | undefined"
|
|
30861
|
+
},
|
|
30862
|
+
{
|
|
30863
|
+
"kind": "Content",
|
|
30864
|
+
"text": ";"
|
|
30865
|
+
}
|
|
30866
|
+
],
|
|
30867
|
+
"isReadonly": true,
|
|
30868
|
+
"isOptional": false,
|
|
30869
|
+
"releaseTag": "Public",
|
|
30870
|
+
"name": "sizeStart",
|
|
30871
|
+
"propertyTypeTokenRange": {
|
|
30872
|
+
"startIndex": 1,
|
|
30873
|
+
"endIndex": 2
|
|
30874
|
+
},
|
|
30875
|
+
"isStatic": false,
|
|
30876
|
+
"isProtected": false,
|
|
30877
|
+
"isAbstract": false
|
|
30878
|
+
},
|
|
30879
|
+
{
|
|
30880
|
+
"kind": "Property",
|
|
30881
|
+
"canonicalReference": "server!ParticleEmitter#sizeStartVariance:member",
|
|
30882
|
+
"docComment": "/**\n * The size variance at the start of an emitted particle's lifetime.\n */\n",
|
|
30883
|
+
"excerptTokens": [
|
|
30884
|
+
{
|
|
30885
|
+
"kind": "Content",
|
|
30886
|
+
"text": "get sizeStartVariance(): "
|
|
30887
|
+
},
|
|
30888
|
+
{
|
|
30889
|
+
"kind": "Content",
|
|
30890
|
+
"text": "number | undefined"
|
|
30891
|
+
},
|
|
30892
|
+
{
|
|
30893
|
+
"kind": "Content",
|
|
30894
|
+
"text": ";"
|
|
30895
|
+
}
|
|
30896
|
+
],
|
|
30897
|
+
"isReadonly": true,
|
|
30898
|
+
"isOptional": false,
|
|
30899
|
+
"releaseTag": "Public",
|
|
30900
|
+
"name": "sizeStartVariance",
|
|
30715
30901
|
"propertyTypeTokenRange": {
|
|
30716
30902
|
"startIndex": 1,
|
|
30717
30903
|
"endIndex": 2
|
|
@@ -30802,7 +30988,7 @@
|
|
|
30802
30988
|
{
|
|
30803
30989
|
"kind": "Method",
|
|
30804
30990
|
"canonicalReference": "server!ParticleEmitter#stop:member(1)",
|
|
30805
|
-
"docComment": "/**\n * Stops the particle emission
|
|
30991
|
+
"docComment": "/**\n * Stops the particle emission.\n */\n",
|
|
30806
30992
|
"excerptTokens": [
|
|
30807
30993
|
{
|
|
30808
30994
|
"kind": "Content",
|
|
@@ -31379,6 +31565,27 @@
|
|
|
31379
31565
|
"releaseTag": "Public",
|
|
31380
31566
|
"name": "SET_OPACITY_START_VARIANCE"
|
|
31381
31567
|
},
|
|
31568
|
+
{
|
|
31569
|
+
"kind": "EnumMember",
|
|
31570
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_PAUSED:member",
|
|
31571
|
+
"docComment": "",
|
|
31572
|
+
"excerptTokens": [
|
|
31573
|
+
{
|
|
31574
|
+
"kind": "Content",
|
|
31575
|
+
"text": "SET_PAUSED = "
|
|
31576
|
+
},
|
|
31577
|
+
{
|
|
31578
|
+
"kind": "Content",
|
|
31579
|
+
"text": "\"PARTICLE_EMITTER.SET_PAUSED\""
|
|
31580
|
+
}
|
|
31581
|
+
],
|
|
31582
|
+
"initializerTokenRange": {
|
|
31583
|
+
"startIndex": 1,
|
|
31584
|
+
"endIndex": 2
|
|
31585
|
+
},
|
|
31586
|
+
"releaseTag": "Public",
|
|
31587
|
+
"name": "SET_PAUSED"
|
|
31588
|
+
},
|
|
31382
31589
|
{
|
|
31383
31590
|
"kind": "EnumMember",
|
|
31384
31591
|
"canonicalReference": "server!ParticleEmitterEvent.SET_POSITION:member",
|
|
@@ -31465,16 +31672,16 @@
|
|
|
31465
31672
|
},
|
|
31466
31673
|
{
|
|
31467
31674
|
"kind": "EnumMember",
|
|
31468
|
-
"canonicalReference": "server!ParticleEmitterEvent.
|
|
31675
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_END:member",
|
|
31469
31676
|
"docComment": "",
|
|
31470
31677
|
"excerptTokens": [
|
|
31471
31678
|
{
|
|
31472
31679
|
"kind": "Content",
|
|
31473
|
-
"text": "
|
|
31680
|
+
"text": "SET_SIZE_END = "
|
|
31474
31681
|
},
|
|
31475
31682
|
{
|
|
31476
31683
|
"kind": "Content",
|
|
31477
|
-
"text": "\"PARTICLE_EMITTER.
|
|
31684
|
+
"text": "\"PARTICLE_EMITTER.SET_SIZE_END\""
|
|
31478
31685
|
}
|
|
31479
31686
|
],
|
|
31480
31687
|
"initializerTokenRange": {
|
|
@@ -31482,20 +31689,20 @@
|
|
|
31482
31689
|
"endIndex": 2
|
|
31483
31690
|
},
|
|
31484
31691
|
"releaseTag": "Public",
|
|
31485
|
-
"name": "
|
|
31692
|
+
"name": "SET_SIZE_END"
|
|
31486
31693
|
},
|
|
31487
31694
|
{
|
|
31488
31695
|
"kind": "EnumMember",
|
|
31489
|
-
"canonicalReference": "server!ParticleEmitterEvent.
|
|
31696
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_END_VARIANCE:member",
|
|
31490
31697
|
"docComment": "",
|
|
31491
31698
|
"excerptTokens": [
|
|
31492
31699
|
{
|
|
31493
31700
|
"kind": "Content",
|
|
31494
|
-
"text": "
|
|
31701
|
+
"text": "SET_SIZE_END_VARIANCE = "
|
|
31495
31702
|
},
|
|
31496
31703
|
{
|
|
31497
31704
|
"kind": "Content",
|
|
31498
|
-
"text": "\"PARTICLE_EMITTER.
|
|
31705
|
+
"text": "\"PARTICLE_EMITTER.SET_SIZE_END_VARIANCE\""
|
|
31499
31706
|
}
|
|
31500
31707
|
],
|
|
31501
31708
|
"initializerTokenRange": {
|
|
@@ -31503,7 +31710,49 @@
|
|
|
31503
31710
|
"endIndex": 2
|
|
31504
31711
|
},
|
|
31505
31712
|
"releaseTag": "Public",
|
|
31506
|
-
"name": "
|
|
31713
|
+
"name": "SET_SIZE_END_VARIANCE"
|
|
31714
|
+
},
|
|
31715
|
+
{
|
|
31716
|
+
"kind": "EnumMember",
|
|
31717
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_START:member",
|
|
31718
|
+
"docComment": "",
|
|
31719
|
+
"excerptTokens": [
|
|
31720
|
+
{
|
|
31721
|
+
"kind": "Content",
|
|
31722
|
+
"text": "SET_SIZE_START = "
|
|
31723
|
+
},
|
|
31724
|
+
{
|
|
31725
|
+
"kind": "Content",
|
|
31726
|
+
"text": "\"PARTICLE_EMITTER.SET_SIZE_START\""
|
|
31727
|
+
}
|
|
31728
|
+
],
|
|
31729
|
+
"initializerTokenRange": {
|
|
31730
|
+
"startIndex": 1,
|
|
31731
|
+
"endIndex": 2
|
|
31732
|
+
},
|
|
31733
|
+
"releaseTag": "Public",
|
|
31734
|
+
"name": "SET_SIZE_START"
|
|
31735
|
+
},
|
|
31736
|
+
{
|
|
31737
|
+
"kind": "EnumMember",
|
|
31738
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_START_VARIANCE:member",
|
|
31739
|
+
"docComment": "",
|
|
31740
|
+
"excerptTokens": [
|
|
31741
|
+
{
|
|
31742
|
+
"kind": "Content",
|
|
31743
|
+
"text": "SET_SIZE_START_VARIANCE = "
|
|
31744
|
+
},
|
|
31745
|
+
{
|
|
31746
|
+
"kind": "Content",
|
|
31747
|
+
"text": "\"PARTICLE_EMITTER.SET_SIZE_START_VARIANCE\""
|
|
31748
|
+
}
|
|
31749
|
+
],
|
|
31750
|
+
"initializerTokenRange": {
|
|
31751
|
+
"startIndex": 1,
|
|
31752
|
+
"endIndex": 2
|
|
31753
|
+
},
|
|
31754
|
+
"releaseTag": "Public",
|
|
31755
|
+
"name": "SET_SIZE_START_VARIANCE"
|
|
31507
31756
|
},
|
|
31508
31757
|
{
|
|
31509
31758
|
"kind": "EnumMember",
|
|
@@ -32455,6 +32704,51 @@
|
|
|
32455
32704
|
"endIndex": 6
|
|
32456
32705
|
}
|
|
32457
32706
|
},
|
|
32707
|
+
{
|
|
32708
|
+
"kind": "PropertySignature",
|
|
32709
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_PAUSED\":member",
|
|
32710
|
+
"docComment": "/**\n * Emitted when the paused state of an emitted particle is set.\n */\n",
|
|
32711
|
+
"excerptTokens": [
|
|
32712
|
+
{
|
|
32713
|
+
"kind": "Content",
|
|
32714
|
+
"text": "["
|
|
32715
|
+
},
|
|
32716
|
+
{
|
|
32717
|
+
"kind": "Reference",
|
|
32718
|
+
"text": "ParticleEmitterEvent.SET_PAUSED",
|
|
32719
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_PAUSED:member"
|
|
32720
|
+
},
|
|
32721
|
+
{
|
|
32722
|
+
"kind": "Content",
|
|
32723
|
+
"text": "]: "
|
|
32724
|
+
},
|
|
32725
|
+
{
|
|
32726
|
+
"kind": "Content",
|
|
32727
|
+
"text": "{\n particleEmitter: "
|
|
32728
|
+
},
|
|
32729
|
+
{
|
|
32730
|
+
"kind": "Reference",
|
|
32731
|
+
"text": "ParticleEmitter",
|
|
32732
|
+
"canonicalReference": "server!ParticleEmitter:class"
|
|
32733
|
+
},
|
|
32734
|
+
{
|
|
32735
|
+
"kind": "Content",
|
|
32736
|
+
"text": ";\n paused: boolean;\n }"
|
|
32737
|
+
},
|
|
32738
|
+
{
|
|
32739
|
+
"kind": "Content",
|
|
32740
|
+
"text": ";"
|
|
32741
|
+
}
|
|
32742
|
+
],
|
|
32743
|
+
"isReadonly": false,
|
|
32744
|
+
"isOptional": false,
|
|
32745
|
+
"releaseTag": "Public",
|
|
32746
|
+
"name": "\"PARTICLE_EMITTER.SET_PAUSED\"",
|
|
32747
|
+
"propertyTypeTokenRange": {
|
|
32748
|
+
"startIndex": 3,
|
|
32749
|
+
"endIndex": 6
|
|
32750
|
+
}
|
|
32751
|
+
},
|
|
32458
32752
|
{
|
|
32459
32753
|
"kind": "PropertySignature",
|
|
32460
32754
|
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_POSITION_VARIANCE\":member",
|
|
@@ -32655,8 +32949,53 @@
|
|
|
32655
32949
|
},
|
|
32656
32950
|
{
|
|
32657
32951
|
"kind": "PropertySignature",
|
|
32658
|
-
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.
|
|
32659
|
-
"docComment": "/**\n * Emitted when the size variance of an emitted particle is set.\n */\n",
|
|
32952
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_SIZE_END_VARIANCE\":member",
|
|
32953
|
+
"docComment": "/**\n * Emitted when the size variance at the end of an emitted particle's lifetime is set.\n */\n",
|
|
32954
|
+
"excerptTokens": [
|
|
32955
|
+
{
|
|
32956
|
+
"kind": "Content",
|
|
32957
|
+
"text": "["
|
|
32958
|
+
},
|
|
32959
|
+
{
|
|
32960
|
+
"kind": "Reference",
|
|
32961
|
+
"text": "ParticleEmitterEvent.SET_SIZE_END_VARIANCE",
|
|
32962
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_END_VARIANCE:member"
|
|
32963
|
+
},
|
|
32964
|
+
{
|
|
32965
|
+
"kind": "Content",
|
|
32966
|
+
"text": "]: "
|
|
32967
|
+
},
|
|
32968
|
+
{
|
|
32969
|
+
"kind": "Content",
|
|
32970
|
+
"text": "{\n particleEmitter: "
|
|
32971
|
+
},
|
|
32972
|
+
{
|
|
32973
|
+
"kind": "Reference",
|
|
32974
|
+
"text": "ParticleEmitter",
|
|
32975
|
+
"canonicalReference": "server!ParticleEmitter:class"
|
|
32976
|
+
},
|
|
32977
|
+
{
|
|
32978
|
+
"kind": "Content",
|
|
32979
|
+
"text": ";\n sizeEndVariance: number;\n }"
|
|
32980
|
+
},
|
|
32981
|
+
{
|
|
32982
|
+
"kind": "Content",
|
|
32983
|
+
"text": ";"
|
|
32984
|
+
}
|
|
32985
|
+
],
|
|
32986
|
+
"isReadonly": false,
|
|
32987
|
+
"isOptional": false,
|
|
32988
|
+
"releaseTag": "Public",
|
|
32989
|
+
"name": "\"PARTICLE_EMITTER.SET_SIZE_END_VARIANCE\"",
|
|
32990
|
+
"propertyTypeTokenRange": {
|
|
32991
|
+
"startIndex": 3,
|
|
32992
|
+
"endIndex": 6
|
|
32993
|
+
}
|
|
32994
|
+
},
|
|
32995
|
+
{
|
|
32996
|
+
"kind": "PropertySignature",
|
|
32997
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_SIZE_END\":member",
|
|
32998
|
+
"docComment": "/**\n * Emitted when the size at the end of an emitted particle's lifetime is set.\n */\n",
|
|
32660
32999
|
"excerptTokens": [
|
|
32661
33000
|
{
|
|
32662
33001
|
"kind": "Content",
|
|
@@ -32664,8 +33003,8 @@
|
|
|
32664
33003
|
},
|
|
32665
33004
|
{
|
|
32666
33005
|
"kind": "Reference",
|
|
32667
|
-
"text": "ParticleEmitterEvent.
|
|
32668
|
-
"canonicalReference": "server!ParticleEmitterEvent.
|
|
33006
|
+
"text": "ParticleEmitterEvent.SET_SIZE_END",
|
|
33007
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_END:member"
|
|
32669
33008
|
},
|
|
32670
33009
|
{
|
|
32671
33010
|
"kind": "Content",
|
|
@@ -32682,7 +33021,7 @@
|
|
|
32682
33021
|
},
|
|
32683
33022
|
{
|
|
32684
33023
|
"kind": "Content",
|
|
32685
|
-
"text": ";\n
|
|
33024
|
+
"text": ";\n sizeEnd: number;\n }"
|
|
32686
33025
|
},
|
|
32687
33026
|
{
|
|
32688
33027
|
"kind": "Content",
|
|
@@ -32692,7 +33031,7 @@
|
|
|
32692
33031
|
"isReadonly": false,
|
|
32693
33032
|
"isOptional": false,
|
|
32694
33033
|
"releaseTag": "Public",
|
|
32695
|
-
"name": "\"PARTICLE_EMITTER.
|
|
33034
|
+
"name": "\"PARTICLE_EMITTER.SET_SIZE_END\"",
|
|
32696
33035
|
"propertyTypeTokenRange": {
|
|
32697
33036
|
"startIndex": 3,
|
|
32698
33037
|
"endIndex": 6
|
|
@@ -32700,8 +33039,8 @@
|
|
|
32700
33039
|
},
|
|
32701
33040
|
{
|
|
32702
33041
|
"kind": "PropertySignature",
|
|
32703
|
-
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.
|
|
32704
|
-
"docComment": "/**\n * Emitted when the size of an emitted particle is set.\n */\n",
|
|
33042
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_SIZE_START_VARIANCE\":member",
|
|
33043
|
+
"docComment": "/**\n * Emitted when the size variance at the start of an emitted particle's lifetime is set.\n */\n",
|
|
32705
33044
|
"excerptTokens": [
|
|
32706
33045
|
{
|
|
32707
33046
|
"kind": "Content",
|
|
@@ -32709,8 +33048,8 @@
|
|
|
32709
33048
|
},
|
|
32710
33049
|
{
|
|
32711
33050
|
"kind": "Reference",
|
|
32712
|
-
"text": "ParticleEmitterEvent.
|
|
32713
|
-
"canonicalReference": "server!ParticleEmitterEvent.
|
|
33051
|
+
"text": "ParticleEmitterEvent.SET_SIZE_START_VARIANCE",
|
|
33052
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_START_VARIANCE:member"
|
|
32714
33053
|
},
|
|
32715
33054
|
{
|
|
32716
33055
|
"kind": "Content",
|
|
@@ -32727,7 +33066,7 @@
|
|
|
32727
33066
|
},
|
|
32728
33067
|
{
|
|
32729
33068
|
"kind": "Content",
|
|
32730
|
-
"text": ";\n
|
|
33069
|
+
"text": ";\n sizeStartVariance: number;\n }"
|
|
32731
33070
|
},
|
|
32732
33071
|
{
|
|
32733
33072
|
"kind": "Content",
|
|
@@ -32737,7 +33076,52 @@
|
|
|
32737
33076
|
"isReadonly": false,
|
|
32738
33077
|
"isOptional": false,
|
|
32739
33078
|
"releaseTag": "Public",
|
|
32740
|
-
"name": "\"PARTICLE_EMITTER.
|
|
33079
|
+
"name": "\"PARTICLE_EMITTER.SET_SIZE_START_VARIANCE\"",
|
|
33080
|
+
"propertyTypeTokenRange": {
|
|
33081
|
+
"startIndex": 3,
|
|
33082
|
+
"endIndex": 6
|
|
33083
|
+
}
|
|
33084
|
+
},
|
|
33085
|
+
{
|
|
33086
|
+
"kind": "PropertySignature",
|
|
33087
|
+
"canonicalReference": "server!ParticleEmitterEventPayloads#\"PARTICLE_EMITTER.SET_SIZE_START\":member",
|
|
33088
|
+
"docComment": "/**\n * Emitted when the size at the start of an emitted particle's lifetime is set.\n */\n",
|
|
33089
|
+
"excerptTokens": [
|
|
33090
|
+
{
|
|
33091
|
+
"kind": "Content",
|
|
33092
|
+
"text": "["
|
|
33093
|
+
},
|
|
33094
|
+
{
|
|
33095
|
+
"kind": "Reference",
|
|
33096
|
+
"text": "ParticleEmitterEvent.SET_SIZE_START",
|
|
33097
|
+
"canonicalReference": "server!ParticleEmitterEvent.SET_SIZE_START:member"
|
|
33098
|
+
},
|
|
33099
|
+
{
|
|
33100
|
+
"kind": "Content",
|
|
33101
|
+
"text": "]: "
|
|
33102
|
+
},
|
|
33103
|
+
{
|
|
33104
|
+
"kind": "Content",
|
|
33105
|
+
"text": "{\n particleEmitter: "
|
|
33106
|
+
},
|
|
33107
|
+
{
|
|
33108
|
+
"kind": "Reference",
|
|
33109
|
+
"text": "ParticleEmitter",
|
|
33110
|
+
"canonicalReference": "server!ParticleEmitter:class"
|
|
33111
|
+
},
|
|
33112
|
+
{
|
|
33113
|
+
"kind": "Content",
|
|
33114
|
+
"text": ";\n sizeStart: number;\n }"
|
|
33115
|
+
},
|
|
33116
|
+
{
|
|
33117
|
+
"kind": "Content",
|
|
33118
|
+
"text": ";"
|
|
33119
|
+
}
|
|
33120
|
+
],
|
|
33121
|
+
"isReadonly": false,
|
|
33122
|
+
"isOptional": false,
|
|
33123
|
+
"releaseTag": "Public",
|
|
33124
|
+
"name": "\"PARTICLE_EMITTER.SET_SIZE_START\"",
|
|
32741
33125
|
"propertyTypeTokenRange": {
|
|
32742
33126
|
"startIndex": 3,
|
|
32743
33127
|
"endIndex": 6
|
|
@@ -33695,12 +34079,12 @@
|
|
|
33695
34079
|
},
|
|
33696
34080
|
{
|
|
33697
34081
|
"kind": "PropertySignature",
|
|
33698
|
-
"canonicalReference": "server!ParticleEmitterOptions#
|
|
33699
|
-
"docComment": "/**\n * The size of an emitted particle.\n */\n",
|
|
34082
|
+
"canonicalReference": "server!ParticleEmitterOptions#sizeEnd:member",
|
|
34083
|
+
"docComment": "/**\n * The size at the end of an emitted particle's lifetime.\n */\n",
|
|
33700
34084
|
"excerptTokens": [
|
|
33701
34085
|
{
|
|
33702
34086
|
"kind": "Content",
|
|
33703
|
-
"text": "
|
|
34087
|
+
"text": "sizeEnd?: "
|
|
33704
34088
|
},
|
|
33705
34089
|
{
|
|
33706
34090
|
"kind": "Content",
|
|
@@ -33714,7 +34098,7 @@
|
|
|
33714
34098
|
"isReadonly": false,
|
|
33715
34099
|
"isOptional": true,
|
|
33716
34100
|
"releaseTag": "Public",
|
|
33717
|
-
"name": "
|
|
34101
|
+
"name": "sizeEnd",
|
|
33718
34102
|
"propertyTypeTokenRange": {
|
|
33719
34103
|
"startIndex": 1,
|
|
33720
34104
|
"endIndex": 2
|
|
@@ -33722,12 +34106,12 @@
|
|
|
33722
34106
|
},
|
|
33723
34107
|
{
|
|
33724
34108
|
"kind": "PropertySignature",
|
|
33725
|
-
"canonicalReference": "server!ParticleEmitterOptions#
|
|
33726
|
-
"docComment": "/**\n * The size variance of an emitted particle.\n */\n",
|
|
34109
|
+
"canonicalReference": "server!ParticleEmitterOptions#sizeEndVariance:member",
|
|
34110
|
+
"docComment": "/**\n * The size variance at the end of an emitted particle's lifetime.\n */\n",
|
|
33727
34111
|
"excerptTokens": [
|
|
33728
34112
|
{
|
|
33729
34113
|
"kind": "Content",
|
|
33730
|
-
"text": "
|
|
34114
|
+
"text": "sizeEndVariance?: "
|
|
33731
34115
|
},
|
|
33732
34116
|
{
|
|
33733
34117
|
"kind": "Content",
|
|
@@ -33741,7 +34125,61 @@
|
|
|
33741
34125
|
"isReadonly": false,
|
|
33742
34126
|
"isOptional": true,
|
|
33743
34127
|
"releaseTag": "Public",
|
|
33744
|
-
"name": "
|
|
34128
|
+
"name": "sizeEndVariance",
|
|
34129
|
+
"propertyTypeTokenRange": {
|
|
34130
|
+
"startIndex": 1,
|
|
34131
|
+
"endIndex": 2
|
|
34132
|
+
}
|
|
34133
|
+
},
|
|
34134
|
+
{
|
|
34135
|
+
"kind": "PropertySignature",
|
|
34136
|
+
"canonicalReference": "server!ParticleEmitterOptions#sizeStart:member",
|
|
34137
|
+
"docComment": "/**\n * The size at the start of an emitted particle's lifetime.\n */\n",
|
|
34138
|
+
"excerptTokens": [
|
|
34139
|
+
{
|
|
34140
|
+
"kind": "Content",
|
|
34141
|
+
"text": "sizeStart?: "
|
|
34142
|
+
},
|
|
34143
|
+
{
|
|
34144
|
+
"kind": "Content",
|
|
34145
|
+
"text": "number"
|
|
34146
|
+
},
|
|
34147
|
+
{
|
|
34148
|
+
"kind": "Content",
|
|
34149
|
+
"text": ";"
|
|
34150
|
+
}
|
|
34151
|
+
],
|
|
34152
|
+
"isReadonly": false,
|
|
34153
|
+
"isOptional": true,
|
|
34154
|
+
"releaseTag": "Public",
|
|
34155
|
+
"name": "sizeStart",
|
|
34156
|
+
"propertyTypeTokenRange": {
|
|
34157
|
+
"startIndex": 1,
|
|
34158
|
+
"endIndex": 2
|
|
34159
|
+
}
|
|
34160
|
+
},
|
|
34161
|
+
{
|
|
34162
|
+
"kind": "PropertySignature",
|
|
34163
|
+
"canonicalReference": "server!ParticleEmitterOptions#sizeStartVariance:member",
|
|
34164
|
+
"docComment": "/**\n * The size variance at the start of an emitted particle's lifetime.\n */\n",
|
|
34165
|
+
"excerptTokens": [
|
|
34166
|
+
{
|
|
34167
|
+
"kind": "Content",
|
|
34168
|
+
"text": "sizeStartVariance?: "
|
|
34169
|
+
},
|
|
34170
|
+
{
|
|
34171
|
+
"kind": "Content",
|
|
34172
|
+
"text": "number"
|
|
34173
|
+
},
|
|
34174
|
+
{
|
|
34175
|
+
"kind": "Content",
|
|
34176
|
+
"text": ";"
|
|
34177
|
+
}
|
|
34178
|
+
],
|
|
34179
|
+
"isReadonly": false,
|
|
34180
|
+
"isOptional": true,
|
|
34181
|
+
"releaseTag": "Public",
|
|
34182
|
+
"name": "sizeStartVariance",
|
|
33745
34183
|
"propertyTypeTokenRange": {
|
|
33746
34184
|
"startIndex": 1,
|
|
33747
34185
|
"endIndex": 2
|