hytopia 0.6.27 → 0.6.29
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 +116 -116
- package/docs/server.collider.md +12 -0
- package/docs/server.collider.scale.md +49 -0
- package/docs/server.entity.md +14 -0
- package/docs/server.entity.setmodelscale.md +53 -0
- package/docs/server.entityevent.md +14 -0
- package/docs/server.entityeventpayloads._entity.set_model_scale_.md +16 -0
- package/docs/server.entityeventpayloads.md +19 -0
- package/docs/server.world.fogcolor.md +13 -0
- package/docs/server.world.fogfar.md +13 -0
- package/docs/server.world.fognear.md +13 -0
- package/docs/server.world.md +105 -0
- package/docs/server.world.setfogcolor.md +53 -0
- package/docs/server.world.setfogfar.md +53 -0
- package/docs/server.world.setfognear.md +53 -0
- package/docs/server.worldevent.md +42 -0
- package/docs/server.worldeventpayloads._world.set_fog_color_.md +16 -0
- package/docs/server.worldeventpayloads._world.set_fog_far_.md +16 -0
- package/docs/server.worldeventpayloads._world.set_fog_near_.md +16 -0
- package/docs/server.worldeventpayloads.md +57 -0
- package/docs/server.worldoptions.fogcolor.md +13 -0
- package/docs/server.worldoptions.fogfar.md +13 -0
- package/docs/server.worldoptions.fognear.md +13 -0
- package/docs/server.worldoptions.md +57 -0
- package/node-server.mjs +39 -39
- package/package.json +1 -1
- package/server.api.json +790 -95
- package/server.d.ts +63 -0
package/server.api.json
CHANGED
|
@@ -8756,6 +8756,54 @@
|
|
|
8756
8756
|
"isAbstract": false,
|
|
8757
8757
|
"name": "removeFromSimulation"
|
|
8758
8758
|
},
|
|
8759
|
+
{
|
|
8760
|
+
"kind": "Method",
|
|
8761
|
+
"canonicalReference": "server!Collider#scale:member(1)",
|
|
8762
|
+
"docComment": "",
|
|
8763
|
+
"excerptTokens": [
|
|
8764
|
+
{
|
|
8765
|
+
"kind": "Content",
|
|
8766
|
+
"text": "scale(scalar: "
|
|
8767
|
+
},
|
|
8768
|
+
{
|
|
8769
|
+
"kind": "Content",
|
|
8770
|
+
"text": "number"
|
|
8771
|
+
},
|
|
8772
|
+
{
|
|
8773
|
+
"kind": "Content",
|
|
8774
|
+
"text": "): "
|
|
8775
|
+
},
|
|
8776
|
+
{
|
|
8777
|
+
"kind": "Content",
|
|
8778
|
+
"text": "void"
|
|
8779
|
+
},
|
|
8780
|
+
{
|
|
8781
|
+
"kind": "Content",
|
|
8782
|
+
"text": ";"
|
|
8783
|
+
}
|
|
8784
|
+
],
|
|
8785
|
+
"isStatic": false,
|
|
8786
|
+
"returnTypeTokenRange": {
|
|
8787
|
+
"startIndex": 3,
|
|
8788
|
+
"endIndex": 4
|
|
8789
|
+
},
|
|
8790
|
+
"releaseTag": "Public",
|
|
8791
|
+
"isProtected": false,
|
|
8792
|
+
"overloadIndex": 1,
|
|
8793
|
+
"parameters": [
|
|
8794
|
+
{
|
|
8795
|
+
"parameterName": "scalar",
|
|
8796
|
+
"parameterTypeTokenRange": {
|
|
8797
|
+
"startIndex": 1,
|
|
8798
|
+
"endIndex": 2
|
|
8799
|
+
},
|
|
8800
|
+
"isOptional": false
|
|
8801
|
+
}
|
|
8802
|
+
],
|
|
8803
|
+
"isOptional": false,
|
|
8804
|
+
"isAbstract": false,
|
|
8805
|
+
"name": "scale"
|
|
8806
|
+
},
|
|
8759
8807
|
{
|
|
8760
8808
|
"kind": "Method",
|
|
8761
8809
|
"canonicalReference": "server!Collider#setBounciness:member(1)",
|
|
@@ -14209,6 +14257,54 @@
|
|
|
14209
14257
|
"isAbstract": false,
|
|
14210
14258
|
"name": "setModelHiddenNodes"
|
|
14211
14259
|
},
|
|
14260
|
+
{
|
|
14261
|
+
"kind": "Method",
|
|
14262
|
+
"canonicalReference": "server!Entity#setModelScale:member(1)",
|
|
14263
|
+
"docComment": "/**\n * Sets the scale of the entity's model and proportionally scales its colliders.\n *\n * @param modelScale - The scale of the entity's model.\n */\n",
|
|
14264
|
+
"excerptTokens": [
|
|
14265
|
+
{
|
|
14266
|
+
"kind": "Content",
|
|
14267
|
+
"text": "setModelScale(modelScale: "
|
|
14268
|
+
},
|
|
14269
|
+
{
|
|
14270
|
+
"kind": "Content",
|
|
14271
|
+
"text": "number"
|
|
14272
|
+
},
|
|
14273
|
+
{
|
|
14274
|
+
"kind": "Content",
|
|
14275
|
+
"text": "): "
|
|
14276
|
+
},
|
|
14277
|
+
{
|
|
14278
|
+
"kind": "Content",
|
|
14279
|
+
"text": "void"
|
|
14280
|
+
},
|
|
14281
|
+
{
|
|
14282
|
+
"kind": "Content",
|
|
14283
|
+
"text": ";"
|
|
14284
|
+
}
|
|
14285
|
+
],
|
|
14286
|
+
"isStatic": false,
|
|
14287
|
+
"returnTypeTokenRange": {
|
|
14288
|
+
"startIndex": 3,
|
|
14289
|
+
"endIndex": 4
|
|
14290
|
+
},
|
|
14291
|
+
"releaseTag": "Public",
|
|
14292
|
+
"isProtected": false,
|
|
14293
|
+
"overloadIndex": 1,
|
|
14294
|
+
"parameters": [
|
|
14295
|
+
{
|
|
14296
|
+
"parameterName": "modelScale",
|
|
14297
|
+
"parameterTypeTokenRange": {
|
|
14298
|
+
"startIndex": 1,
|
|
14299
|
+
"endIndex": 2
|
|
14300
|
+
},
|
|
14301
|
+
"isOptional": false
|
|
14302
|
+
}
|
|
14303
|
+
],
|
|
14304
|
+
"isOptional": false,
|
|
14305
|
+
"isAbstract": false,
|
|
14306
|
+
"name": "setModelScale"
|
|
14307
|
+
},
|
|
14212
14308
|
{
|
|
14213
14309
|
"kind": "Method",
|
|
14214
14310
|
"canonicalReference": "server!Entity#setModelShownNodes:member(1)",
|
|
@@ -15184,6 +15280,27 @@
|
|
|
15184
15280
|
"releaseTag": "Public",
|
|
15185
15281
|
"name": "SET_MODEL_HIDDEN_NODES"
|
|
15186
15282
|
},
|
|
15283
|
+
{
|
|
15284
|
+
"kind": "EnumMember",
|
|
15285
|
+
"canonicalReference": "server!EntityEvent.SET_MODEL_SCALE:member",
|
|
15286
|
+
"docComment": "",
|
|
15287
|
+
"excerptTokens": [
|
|
15288
|
+
{
|
|
15289
|
+
"kind": "Content",
|
|
15290
|
+
"text": "SET_MODEL_SCALE = "
|
|
15291
|
+
},
|
|
15292
|
+
{
|
|
15293
|
+
"kind": "Content",
|
|
15294
|
+
"text": "\"ENTITY.SET_MODEL_SCALE\""
|
|
15295
|
+
}
|
|
15296
|
+
],
|
|
15297
|
+
"initializerTokenRange": {
|
|
15298
|
+
"startIndex": 1,
|
|
15299
|
+
"endIndex": 2
|
|
15300
|
+
},
|
|
15301
|
+
"releaseTag": "Public",
|
|
15302
|
+
"name": "SET_MODEL_SCALE"
|
|
15303
|
+
},
|
|
15187
15304
|
{
|
|
15188
15305
|
"kind": "EnumMember",
|
|
15189
15306
|
"canonicalReference": "server!EntityEvent.SET_MODEL_SHOWN_NODES:member",
|
|
@@ -15831,6 +15948,51 @@
|
|
|
15831
15948
|
"endIndex": 8
|
|
15832
15949
|
}
|
|
15833
15950
|
},
|
|
15951
|
+
{
|
|
15952
|
+
"kind": "PropertySignature",
|
|
15953
|
+
"canonicalReference": "server!EntityEventPayloads#\"ENTITY.SET_MODEL_SCALE\":member",
|
|
15954
|
+
"docComment": "/**\n * Emitted when the scale of the entity's model is set.\n */\n",
|
|
15955
|
+
"excerptTokens": [
|
|
15956
|
+
{
|
|
15957
|
+
"kind": "Content",
|
|
15958
|
+
"text": "["
|
|
15959
|
+
},
|
|
15960
|
+
{
|
|
15961
|
+
"kind": "Reference",
|
|
15962
|
+
"text": "EntityEvent.SET_MODEL_SCALE",
|
|
15963
|
+
"canonicalReference": "server!EntityEvent.SET_MODEL_SCALE:member"
|
|
15964
|
+
},
|
|
15965
|
+
{
|
|
15966
|
+
"kind": "Content",
|
|
15967
|
+
"text": "]: "
|
|
15968
|
+
},
|
|
15969
|
+
{
|
|
15970
|
+
"kind": "Content",
|
|
15971
|
+
"text": "{\n entity: "
|
|
15972
|
+
},
|
|
15973
|
+
{
|
|
15974
|
+
"kind": "Reference",
|
|
15975
|
+
"text": "Entity",
|
|
15976
|
+
"canonicalReference": "server!Entity:class"
|
|
15977
|
+
},
|
|
15978
|
+
{
|
|
15979
|
+
"kind": "Content",
|
|
15980
|
+
"text": ";\n modelScale: number;\n }"
|
|
15981
|
+
},
|
|
15982
|
+
{
|
|
15983
|
+
"kind": "Content",
|
|
15984
|
+
"text": ";"
|
|
15985
|
+
}
|
|
15986
|
+
],
|
|
15987
|
+
"isReadonly": false,
|
|
15988
|
+
"isOptional": false,
|
|
15989
|
+
"releaseTag": "Public",
|
|
15990
|
+
"name": "\"ENTITY.SET_MODEL_SCALE\"",
|
|
15991
|
+
"propertyTypeTokenRange": {
|
|
15992
|
+
"startIndex": 3,
|
|
15993
|
+
"endIndex": 6
|
|
15994
|
+
}
|
|
15995
|
+
},
|
|
15834
15996
|
{
|
|
15835
15997
|
"kind": "PropertySignature",
|
|
15836
15998
|
"canonicalReference": "server!EntityEventPayloads#\"ENTITY.SET_MODEL_SHOWN_NODES\":member",
|
|
@@ -47245,16 +47407,21 @@
|
|
|
47245
47407
|
},
|
|
47246
47408
|
{
|
|
47247
47409
|
"kind": "Property",
|
|
47248
|
-
"canonicalReference": "server!World#
|
|
47249
|
-
"docComment": "/**\n * The
|
|
47410
|
+
"canonicalReference": "server!World#fogColor:member",
|
|
47411
|
+
"docComment": "/**\n * The color of the fog, if not explicitly set, defaults to ambient light color.\n */\n",
|
|
47250
47412
|
"excerptTokens": [
|
|
47251
47413
|
{
|
|
47252
47414
|
"kind": "Content",
|
|
47253
|
-
"text": "get
|
|
47415
|
+
"text": "get fogColor(): "
|
|
47416
|
+
},
|
|
47417
|
+
{
|
|
47418
|
+
"kind": "Reference",
|
|
47419
|
+
"text": "RgbColor",
|
|
47420
|
+
"canonicalReference": "server!RgbColor:interface"
|
|
47254
47421
|
},
|
|
47255
47422
|
{
|
|
47256
47423
|
"kind": "Content",
|
|
47257
|
-
"text": "
|
|
47424
|
+
"text": " | undefined"
|
|
47258
47425
|
},
|
|
47259
47426
|
{
|
|
47260
47427
|
"kind": "Content",
|
|
@@ -47264,10 +47431,10 @@
|
|
|
47264
47431
|
"isReadonly": true,
|
|
47265
47432
|
"isOptional": false,
|
|
47266
47433
|
"releaseTag": "Public",
|
|
47267
|
-
"name": "
|
|
47434
|
+
"name": "fogColor",
|
|
47268
47435
|
"propertyTypeTokenRange": {
|
|
47269
47436
|
"startIndex": 1,
|
|
47270
|
-
"endIndex":
|
|
47437
|
+
"endIndex": 3
|
|
47271
47438
|
},
|
|
47272
47439
|
"isStatic": false,
|
|
47273
47440
|
"isProtected": false,
|
|
@@ -47275,17 +47442,16 @@
|
|
|
47275
47442
|
},
|
|
47276
47443
|
{
|
|
47277
47444
|
"kind": "Property",
|
|
47278
|
-
"canonicalReference": "server!World#
|
|
47279
|
-
"docComment": "/**\n * The
|
|
47445
|
+
"canonicalReference": "server!World#fogFar:member",
|
|
47446
|
+
"docComment": "/**\n * The maximum distance from the camera at which fog stops being applied.\n */\n",
|
|
47280
47447
|
"excerptTokens": [
|
|
47281
47448
|
{
|
|
47282
47449
|
"kind": "Content",
|
|
47283
|
-
"text": "get
|
|
47450
|
+
"text": "get fogFar(): "
|
|
47284
47451
|
},
|
|
47285
47452
|
{
|
|
47286
|
-
"kind": "
|
|
47287
|
-
"text": "
|
|
47288
|
-
"canonicalReference": "server!LightManager:class"
|
|
47453
|
+
"kind": "Content",
|
|
47454
|
+
"text": "number"
|
|
47289
47455
|
},
|
|
47290
47456
|
{
|
|
47291
47457
|
"kind": "Content",
|
|
@@ -47295,7 +47461,7 @@
|
|
|
47295
47461
|
"isReadonly": true,
|
|
47296
47462
|
"isOptional": false,
|
|
47297
47463
|
"releaseTag": "Public",
|
|
47298
|
-
"name": "
|
|
47464
|
+
"name": "fogFar",
|
|
47299
47465
|
"propertyTypeTokenRange": {
|
|
47300
47466
|
"startIndex": 1,
|
|
47301
47467
|
"endIndex": 2
|
|
@@ -47304,68 +47470,18 @@
|
|
|
47304
47470
|
"isProtected": false,
|
|
47305
47471
|
"isAbstract": false
|
|
47306
47472
|
},
|
|
47307
|
-
{
|
|
47308
|
-
"kind": "Method",
|
|
47309
|
-
"canonicalReference": "server!World#loadMap:member(1)",
|
|
47310
|
-
"docComment": "/**\n * Loads a map into the world, clearing any prior map.\n *\n * @param map - The map to load.\n */\n",
|
|
47311
|
-
"excerptTokens": [
|
|
47312
|
-
{
|
|
47313
|
-
"kind": "Content",
|
|
47314
|
-
"text": "loadMap(map: "
|
|
47315
|
-
},
|
|
47316
|
-
{
|
|
47317
|
-
"kind": "Reference",
|
|
47318
|
-
"text": "WorldMap",
|
|
47319
|
-
"canonicalReference": "server!WorldMap:interface"
|
|
47320
|
-
},
|
|
47321
|
-
{
|
|
47322
|
-
"kind": "Content",
|
|
47323
|
-
"text": "): "
|
|
47324
|
-
},
|
|
47325
|
-
{
|
|
47326
|
-
"kind": "Content",
|
|
47327
|
-
"text": "void"
|
|
47328
|
-
},
|
|
47329
|
-
{
|
|
47330
|
-
"kind": "Content",
|
|
47331
|
-
"text": ";"
|
|
47332
|
-
}
|
|
47333
|
-
],
|
|
47334
|
-
"isStatic": false,
|
|
47335
|
-
"returnTypeTokenRange": {
|
|
47336
|
-
"startIndex": 3,
|
|
47337
|
-
"endIndex": 4
|
|
47338
|
-
},
|
|
47339
|
-
"releaseTag": "Public",
|
|
47340
|
-
"isProtected": false,
|
|
47341
|
-
"overloadIndex": 1,
|
|
47342
|
-
"parameters": [
|
|
47343
|
-
{
|
|
47344
|
-
"parameterName": "map",
|
|
47345
|
-
"parameterTypeTokenRange": {
|
|
47346
|
-
"startIndex": 1,
|
|
47347
|
-
"endIndex": 2
|
|
47348
|
-
},
|
|
47349
|
-
"isOptional": false
|
|
47350
|
-
}
|
|
47351
|
-
],
|
|
47352
|
-
"isOptional": false,
|
|
47353
|
-
"isAbstract": false,
|
|
47354
|
-
"name": "loadMap"
|
|
47355
|
-
},
|
|
47356
47473
|
{
|
|
47357
47474
|
"kind": "Property",
|
|
47358
|
-
"canonicalReference": "server!World#
|
|
47359
|
-
"docComment": "/**\n * The
|
|
47475
|
+
"canonicalReference": "server!World#fogNear:member",
|
|
47476
|
+
"docComment": "/**\n * The minimum distance from the camera to start applying fog.\n */\n",
|
|
47360
47477
|
"excerptTokens": [
|
|
47361
47478
|
{
|
|
47362
47479
|
"kind": "Content",
|
|
47363
|
-
"text": "get
|
|
47480
|
+
"text": "get fogNear(): "
|
|
47364
47481
|
},
|
|
47365
47482
|
{
|
|
47366
|
-
"kind": "
|
|
47367
|
-
"text": "
|
|
47368
|
-
"canonicalReference": "server!WorldLoop:class"
|
|
47483
|
+
"kind": "Content",
|
|
47484
|
+
"text": "number"
|
|
47369
47485
|
},
|
|
47370
47486
|
{
|
|
47371
47487
|
"kind": "Content",
|
|
@@ -47375,7 +47491,7 @@
|
|
|
47375
47491
|
"isReadonly": true,
|
|
47376
47492
|
"isOptional": false,
|
|
47377
47493
|
"releaseTag": "Public",
|
|
47378
|
-
"name": "
|
|
47494
|
+
"name": "fogNear",
|
|
47379
47495
|
"propertyTypeTokenRange": {
|
|
47380
47496
|
"startIndex": 1,
|
|
47381
47497
|
"endIndex": 2
|
|
@@ -47386,16 +47502,16 @@
|
|
|
47386
47502
|
},
|
|
47387
47503
|
{
|
|
47388
47504
|
"kind": "Property",
|
|
47389
|
-
"canonicalReference": "server!World#
|
|
47390
|
-
"docComment": "/**\n * The
|
|
47505
|
+
"canonicalReference": "server!World#id:member",
|
|
47506
|
+
"docComment": "/**\n * The unique ID of the world.\n */\n",
|
|
47391
47507
|
"excerptTokens": [
|
|
47392
47508
|
{
|
|
47393
47509
|
"kind": "Content",
|
|
47394
|
-
"text": "get
|
|
47510
|
+
"text": "get id(): "
|
|
47395
47511
|
},
|
|
47396
47512
|
{
|
|
47397
47513
|
"kind": "Content",
|
|
47398
|
-
"text": "
|
|
47514
|
+
"text": "number"
|
|
47399
47515
|
},
|
|
47400
47516
|
{
|
|
47401
47517
|
"kind": "Content",
|
|
@@ -47405,7 +47521,7 @@
|
|
|
47405
47521
|
"isReadonly": true,
|
|
47406
47522
|
"isOptional": false,
|
|
47407
47523
|
"releaseTag": "Public",
|
|
47408
|
-
"name": "
|
|
47524
|
+
"name": "id",
|
|
47409
47525
|
"propertyTypeTokenRange": {
|
|
47410
47526
|
"startIndex": 1,
|
|
47411
47527
|
"endIndex": 2
|
|
@@ -47416,17 +47532,17 @@
|
|
|
47416
47532
|
},
|
|
47417
47533
|
{
|
|
47418
47534
|
"kind": "Property",
|
|
47419
|
-
"canonicalReference": "server!World#
|
|
47420
|
-
"docComment": "/**\n * The
|
|
47535
|
+
"canonicalReference": "server!World#lightManager:member",
|
|
47536
|
+
"docComment": "/**\n * The light manager for the world.\n */\n",
|
|
47421
47537
|
"excerptTokens": [
|
|
47422
47538
|
{
|
|
47423
47539
|
"kind": "Content",
|
|
47424
|
-
"text": "get
|
|
47540
|
+
"text": "get lightManager(): "
|
|
47425
47541
|
},
|
|
47426
47542
|
{
|
|
47427
47543
|
"kind": "Reference",
|
|
47428
|
-
"text": "
|
|
47429
|
-
"canonicalReference": "server!
|
|
47544
|
+
"text": "LightManager",
|
|
47545
|
+
"canonicalReference": "server!LightManager:class"
|
|
47430
47546
|
},
|
|
47431
47547
|
{
|
|
47432
47548
|
"kind": "Content",
|
|
@@ -47436,7 +47552,7 @@
|
|
|
47436
47552
|
"isReadonly": true,
|
|
47437
47553
|
"isOptional": false,
|
|
47438
47554
|
"releaseTag": "Public",
|
|
47439
|
-
"name": "
|
|
47555
|
+
"name": "lightManager",
|
|
47440
47556
|
"propertyTypeTokenRange": {
|
|
47441
47557
|
"startIndex": 1,
|
|
47442
47558
|
"endIndex": 2
|
|
@@ -47447,17 +47563,158 @@
|
|
|
47447
47563
|
},
|
|
47448
47564
|
{
|
|
47449
47565
|
"kind": "Method",
|
|
47450
|
-
"canonicalReference": "server!World#
|
|
47451
|
-
"docComment": "/**\n *
|
|
47566
|
+
"canonicalReference": "server!World#loadMap:member(1)",
|
|
47567
|
+
"docComment": "/**\n * Loads a map into the world, clearing any prior map.\n *\n * @param map - The map to load.\n */\n",
|
|
47452
47568
|
"excerptTokens": [
|
|
47453
47569
|
{
|
|
47454
47570
|
"kind": "Content",
|
|
47455
|
-
"text": "
|
|
47571
|
+
"text": "loadMap(map: "
|
|
47456
47572
|
},
|
|
47457
47573
|
{
|
|
47458
47574
|
"kind": "Reference",
|
|
47459
|
-
"text": "
|
|
47460
|
-
"canonicalReference": "server!
|
|
47575
|
+
"text": "WorldMap",
|
|
47576
|
+
"canonicalReference": "server!WorldMap:interface"
|
|
47577
|
+
},
|
|
47578
|
+
{
|
|
47579
|
+
"kind": "Content",
|
|
47580
|
+
"text": "): "
|
|
47581
|
+
},
|
|
47582
|
+
{
|
|
47583
|
+
"kind": "Content",
|
|
47584
|
+
"text": "void"
|
|
47585
|
+
},
|
|
47586
|
+
{
|
|
47587
|
+
"kind": "Content",
|
|
47588
|
+
"text": ";"
|
|
47589
|
+
}
|
|
47590
|
+
],
|
|
47591
|
+
"isStatic": false,
|
|
47592
|
+
"returnTypeTokenRange": {
|
|
47593
|
+
"startIndex": 3,
|
|
47594
|
+
"endIndex": 4
|
|
47595
|
+
},
|
|
47596
|
+
"releaseTag": "Public",
|
|
47597
|
+
"isProtected": false,
|
|
47598
|
+
"overloadIndex": 1,
|
|
47599
|
+
"parameters": [
|
|
47600
|
+
{
|
|
47601
|
+
"parameterName": "map",
|
|
47602
|
+
"parameterTypeTokenRange": {
|
|
47603
|
+
"startIndex": 1,
|
|
47604
|
+
"endIndex": 2
|
|
47605
|
+
},
|
|
47606
|
+
"isOptional": false
|
|
47607
|
+
}
|
|
47608
|
+
],
|
|
47609
|
+
"isOptional": false,
|
|
47610
|
+
"isAbstract": false,
|
|
47611
|
+
"name": "loadMap"
|
|
47612
|
+
},
|
|
47613
|
+
{
|
|
47614
|
+
"kind": "Property",
|
|
47615
|
+
"canonicalReference": "server!World#loop:member",
|
|
47616
|
+
"docComment": "/**\n * The world loop for the world.\n */\n",
|
|
47617
|
+
"excerptTokens": [
|
|
47618
|
+
{
|
|
47619
|
+
"kind": "Content",
|
|
47620
|
+
"text": "get loop(): "
|
|
47621
|
+
},
|
|
47622
|
+
{
|
|
47623
|
+
"kind": "Reference",
|
|
47624
|
+
"text": "WorldLoop",
|
|
47625
|
+
"canonicalReference": "server!WorldLoop:class"
|
|
47626
|
+
},
|
|
47627
|
+
{
|
|
47628
|
+
"kind": "Content",
|
|
47629
|
+
"text": ";"
|
|
47630
|
+
}
|
|
47631
|
+
],
|
|
47632
|
+
"isReadonly": true,
|
|
47633
|
+
"isOptional": false,
|
|
47634
|
+
"releaseTag": "Public",
|
|
47635
|
+
"name": "loop",
|
|
47636
|
+
"propertyTypeTokenRange": {
|
|
47637
|
+
"startIndex": 1,
|
|
47638
|
+
"endIndex": 2
|
|
47639
|
+
},
|
|
47640
|
+
"isStatic": false,
|
|
47641
|
+
"isProtected": false,
|
|
47642
|
+
"isAbstract": false
|
|
47643
|
+
},
|
|
47644
|
+
{
|
|
47645
|
+
"kind": "Property",
|
|
47646
|
+
"canonicalReference": "server!World#name:member",
|
|
47647
|
+
"docComment": "/**\n * The name of the world.\n */\n",
|
|
47648
|
+
"excerptTokens": [
|
|
47649
|
+
{
|
|
47650
|
+
"kind": "Content",
|
|
47651
|
+
"text": "get name(): "
|
|
47652
|
+
},
|
|
47653
|
+
{
|
|
47654
|
+
"kind": "Content",
|
|
47655
|
+
"text": "string"
|
|
47656
|
+
},
|
|
47657
|
+
{
|
|
47658
|
+
"kind": "Content",
|
|
47659
|
+
"text": ";"
|
|
47660
|
+
}
|
|
47661
|
+
],
|
|
47662
|
+
"isReadonly": true,
|
|
47663
|
+
"isOptional": false,
|
|
47664
|
+
"releaseTag": "Public",
|
|
47665
|
+
"name": "name",
|
|
47666
|
+
"propertyTypeTokenRange": {
|
|
47667
|
+
"startIndex": 1,
|
|
47668
|
+
"endIndex": 2
|
|
47669
|
+
},
|
|
47670
|
+
"isStatic": false,
|
|
47671
|
+
"isProtected": false,
|
|
47672
|
+
"isAbstract": false
|
|
47673
|
+
},
|
|
47674
|
+
{
|
|
47675
|
+
"kind": "Property",
|
|
47676
|
+
"canonicalReference": "server!World#sceneUIManager:member",
|
|
47677
|
+
"docComment": "/**\n * The scene UI manager for the world.\n */\n",
|
|
47678
|
+
"excerptTokens": [
|
|
47679
|
+
{
|
|
47680
|
+
"kind": "Content",
|
|
47681
|
+
"text": "get sceneUIManager(): "
|
|
47682
|
+
},
|
|
47683
|
+
{
|
|
47684
|
+
"kind": "Reference",
|
|
47685
|
+
"text": "SceneUIManager",
|
|
47686
|
+
"canonicalReference": "server!SceneUIManager:class"
|
|
47687
|
+
},
|
|
47688
|
+
{
|
|
47689
|
+
"kind": "Content",
|
|
47690
|
+
"text": ";"
|
|
47691
|
+
}
|
|
47692
|
+
],
|
|
47693
|
+
"isReadonly": true,
|
|
47694
|
+
"isOptional": false,
|
|
47695
|
+
"releaseTag": "Public",
|
|
47696
|
+
"name": "sceneUIManager",
|
|
47697
|
+
"propertyTypeTokenRange": {
|
|
47698
|
+
"startIndex": 1,
|
|
47699
|
+
"endIndex": 2
|
|
47700
|
+
},
|
|
47701
|
+
"isStatic": false,
|
|
47702
|
+
"isProtected": false,
|
|
47703
|
+
"isAbstract": false
|
|
47704
|
+
},
|
|
47705
|
+
{
|
|
47706
|
+
"kind": "Method",
|
|
47707
|
+
"canonicalReference": "server!World#setAmbientLightColor:member(1)",
|
|
47708
|
+
"docComment": "/**\n * Sets the color of the world's ambient light.\n *\n * @param color - The color of the light.\n */\n",
|
|
47709
|
+
"excerptTokens": [
|
|
47710
|
+
{
|
|
47711
|
+
"kind": "Content",
|
|
47712
|
+
"text": "setAmbientLightColor(color: "
|
|
47713
|
+
},
|
|
47714
|
+
{
|
|
47715
|
+
"kind": "Reference",
|
|
47716
|
+
"text": "RgbColor",
|
|
47717
|
+
"canonicalReference": "server!RgbColor:interface"
|
|
47461
47718
|
},
|
|
47462
47719
|
{
|
|
47463
47720
|
"kind": "Content",
|
|
@@ -47627,7 +47884,157 @@
|
|
|
47627
47884
|
"overloadIndex": 1,
|
|
47628
47885
|
"parameters": [
|
|
47629
47886
|
{
|
|
47630
|
-
"parameterName": "intensity",
|
|
47887
|
+
"parameterName": "intensity",
|
|
47888
|
+
"parameterTypeTokenRange": {
|
|
47889
|
+
"startIndex": 1,
|
|
47890
|
+
"endIndex": 2
|
|
47891
|
+
},
|
|
47892
|
+
"isOptional": false
|
|
47893
|
+
}
|
|
47894
|
+
],
|
|
47895
|
+
"isOptional": false,
|
|
47896
|
+
"isAbstract": false,
|
|
47897
|
+
"name": "setDirectionalLightIntensity"
|
|
47898
|
+
},
|
|
47899
|
+
{
|
|
47900
|
+
"kind": "Method",
|
|
47901
|
+
"canonicalReference": "server!World#setDirectionalLightPosition:member(1)",
|
|
47902
|
+
"docComment": "/**\n * Sets the position the world's directional light originates from.\n *\n * @param position - The position in the world.\n */\n",
|
|
47903
|
+
"excerptTokens": [
|
|
47904
|
+
{
|
|
47905
|
+
"kind": "Content",
|
|
47906
|
+
"text": "setDirectionalLightPosition(position: "
|
|
47907
|
+
},
|
|
47908
|
+
{
|
|
47909
|
+
"kind": "Reference",
|
|
47910
|
+
"text": "Vector3Like",
|
|
47911
|
+
"canonicalReference": "server!Vector3Like:interface"
|
|
47912
|
+
},
|
|
47913
|
+
{
|
|
47914
|
+
"kind": "Content",
|
|
47915
|
+
"text": "): "
|
|
47916
|
+
},
|
|
47917
|
+
{
|
|
47918
|
+
"kind": "Content",
|
|
47919
|
+
"text": "void"
|
|
47920
|
+
},
|
|
47921
|
+
{
|
|
47922
|
+
"kind": "Content",
|
|
47923
|
+
"text": ";"
|
|
47924
|
+
}
|
|
47925
|
+
],
|
|
47926
|
+
"isStatic": false,
|
|
47927
|
+
"returnTypeTokenRange": {
|
|
47928
|
+
"startIndex": 3,
|
|
47929
|
+
"endIndex": 4
|
|
47930
|
+
},
|
|
47931
|
+
"releaseTag": "Public",
|
|
47932
|
+
"isProtected": false,
|
|
47933
|
+
"overloadIndex": 1,
|
|
47934
|
+
"parameters": [
|
|
47935
|
+
{
|
|
47936
|
+
"parameterName": "position",
|
|
47937
|
+
"parameterTypeTokenRange": {
|
|
47938
|
+
"startIndex": 1,
|
|
47939
|
+
"endIndex": 2
|
|
47940
|
+
},
|
|
47941
|
+
"isOptional": false
|
|
47942
|
+
}
|
|
47943
|
+
],
|
|
47944
|
+
"isOptional": false,
|
|
47945
|
+
"isAbstract": false,
|
|
47946
|
+
"name": "setDirectionalLightPosition"
|
|
47947
|
+
},
|
|
47948
|
+
{
|
|
47949
|
+
"kind": "Method",
|
|
47950
|
+
"canonicalReference": "server!World#setFogColor:member(1)",
|
|
47951
|
+
"docComment": "/**\n * Sets the color of the world's fog.\n *\n * @param color - The color of the fog, or undefined to reset to ambient light color.\n */\n",
|
|
47952
|
+
"excerptTokens": [
|
|
47953
|
+
{
|
|
47954
|
+
"kind": "Content",
|
|
47955
|
+
"text": "setFogColor(color: "
|
|
47956
|
+
},
|
|
47957
|
+
{
|
|
47958
|
+
"kind": "Reference",
|
|
47959
|
+
"text": "RgbColor",
|
|
47960
|
+
"canonicalReference": "server!RgbColor:interface"
|
|
47961
|
+
},
|
|
47962
|
+
{
|
|
47963
|
+
"kind": "Content",
|
|
47964
|
+
"text": " | undefined"
|
|
47965
|
+
},
|
|
47966
|
+
{
|
|
47967
|
+
"kind": "Content",
|
|
47968
|
+
"text": "): "
|
|
47969
|
+
},
|
|
47970
|
+
{
|
|
47971
|
+
"kind": "Content",
|
|
47972
|
+
"text": "void"
|
|
47973
|
+
},
|
|
47974
|
+
{
|
|
47975
|
+
"kind": "Content",
|
|
47976
|
+
"text": ";"
|
|
47977
|
+
}
|
|
47978
|
+
],
|
|
47979
|
+
"isStatic": false,
|
|
47980
|
+
"returnTypeTokenRange": {
|
|
47981
|
+
"startIndex": 4,
|
|
47982
|
+
"endIndex": 5
|
|
47983
|
+
},
|
|
47984
|
+
"releaseTag": "Public",
|
|
47985
|
+
"isProtected": false,
|
|
47986
|
+
"overloadIndex": 1,
|
|
47987
|
+
"parameters": [
|
|
47988
|
+
{
|
|
47989
|
+
"parameterName": "color",
|
|
47990
|
+
"parameterTypeTokenRange": {
|
|
47991
|
+
"startIndex": 1,
|
|
47992
|
+
"endIndex": 3
|
|
47993
|
+
},
|
|
47994
|
+
"isOptional": false
|
|
47995
|
+
}
|
|
47996
|
+
],
|
|
47997
|
+
"isOptional": false,
|
|
47998
|
+
"isAbstract": false,
|
|
47999
|
+
"name": "setFogColor"
|
|
48000
|
+
},
|
|
48001
|
+
{
|
|
48002
|
+
"kind": "Method",
|
|
48003
|
+
"canonicalReference": "server!World#setFogFar:member(1)",
|
|
48004
|
+
"docComment": "/**\n * Sets the maximum distance from the camera at which fog stops being applied.\n *\n * @param far - The far distance.\n */\n",
|
|
48005
|
+
"excerptTokens": [
|
|
48006
|
+
{
|
|
48007
|
+
"kind": "Content",
|
|
48008
|
+
"text": "setFogFar(far: "
|
|
48009
|
+
},
|
|
48010
|
+
{
|
|
48011
|
+
"kind": "Content",
|
|
48012
|
+
"text": "number"
|
|
48013
|
+
},
|
|
48014
|
+
{
|
|
48015
|
+
"kind": "Content",
|
|
48016
|
+
"text": "): "
|
|
48017
|
+
},
|
|
48018
|
+
{
|
|
48019
|
+
"kind": "Content",
|
|
48020
|
+
"text": "void"
|
|
48021
|
+
},
|
|
48022
|
+
{
|
|
48023
|
+
"kind": "Content",
|
|
48024
|
+
"text": ";"
|
|
48025
|
+
}
|
|
48026
|
+
],
|
|
48027
|
+
"isStatic": false,
|
|
48028
|
+
"returnTypeTokenRange": {
|
|
48029
|
+
"startIndex": 3,
|
|
48030
|
+
"endIndex": 4
|
|
48031
|
+
},
|
|
48032
|
+
"releaseTag": "Public",
|
|
48033
|
+
"isProtected": false,
|
|
48034
|
+
"overloadIndex": 1,
|
|
48035
|
+
"parameters": [
|
|
48036
|
+
{
|
|
48037
|
+
"parameterName": "far",
|
|
47631
48038
|
"parameterTypeTokenRange": {
|
|
47632
48039
|
"startIndex": 1,
|
|
47633
48040
|
"endIndex": 2
|
|
@@ -47637,21 +48044,20 @@
|
|
|
47637
48044
|
],
|
|
47638
48045
|
"isOptional": false,
|
|
47639
48046
|
"isAbstract": false,
|
|
47640
|
-
"name": "
|
|
48047
|
+
"name": "setFogFar"
|
|
47641
48048
|
},
|
|
47642
48049
|
{
|
|
47643
48050
|
"kind": "Method",
|
|
47644
|
-
"canonicalReference": "server!World#
|
|
47645
|
-
"docComment": "/**\n * Sets the
|
|
48051
|
+
"canonicalReference": "server!World#setFogNear:member(1)",
|
|
48052
|
+
"docComment": "/**\n * Sets the minimum distance from the camera to start applying fog.\n *\n * @param near - The near distance.\n */\n",
|
|
47646
48053
|
"excerptTokens": [
|
|
47647
48054
|
{
|
|
47648
48055
|
"kind": "Content",
|
|
47649
|
-
"text": "
|
|
48056
|
+
"text": "setFogNear(near: "
|
|
47650
48057
|
},
|
|
47651
48058
|
{
|
|
47652
|
-
"kind": "
|
|
47653
|
-
"text": "
|
|
47654
|
-
"canonicalReference": "server!Vector3Like:interface"
|
|
48059
|
+
"kind": "Content",
|
|
48060
|
+
"text": "number"
|
|
47655
48061
|
},
|
|
47656
48062
|
{
|
|
47657
48063
|
"kind": "Content",
|
|
@@ -47676,7 +48082,7 @@
|
|
|
47676
48082
|
"overloadIndex": 1,
|
|
47677
48083
|
"parameters": [
|
|
47678
48084
|
{
|
|
47679
|
-
"parameterName": "
|
|
48085
|
+
"parameterName": "near",
|
|
47680
48086
|
"parameterTypeTokenRange": {
|
|
47681
48087
|
"startIndex": 1,
|
|
47682
48088
|
"endIndex": 2
|
|
@@ -47686,7 +48092,7 @@
|
|
|
47686
48092
|
],
|
|
47687
48093
|
"isOptional": false,
|
|
47688
48094
|
"isAbstract": false,
|
|
47689
|
-
"name": "
|
|
48095
|
+
"name": "setFogNear"
|
|
47690
48096
|
},
|
|
47691
48097
|
{
|
|
47692
48098
|
"kind": "Method",
|
|
@@ -48051,6 +48457,69 @@
|
|
|
48051
48457
|
"releaseTag": "Public",
|
|
48052
48458
|
"name": "SET_DIRECTIONAL_LIGHT_POSITION"
|
|
48053
48459
|
},
|
|
48460
|
+
{
|
|
48461
|
+
"kind": "EnumMember",
|
|
48462
|
+
"canonicalReference": "server!WorldEvent.SET_FOG_COLOR:member",
|
|
48463
|
+
"docComment": "",
|
|
48464
|
+
"excerptTokens": [
|
|
48465
|
+
{
|
|
48466
|
+
"kind": "Content",
|
|
48467
|
+
"text": "SET_FOG_COLOR = "
|
|
48468
|
+
},
|
|
48469
|
+
{
|
|
48470
|
+
"kind": "Content",
|
|
48471
|
+
"text": "\"WORLD.SET_FOG_COLOR\""
|
|
48472
|
+
}
|
|
48473
|
+
],
|
|
48474
|
+
"initializerTokenRange": {
|
|
48475
|
+
"startIndex": 1,
|
|
48476
|
+
"endIndex": 2
|
|
48477
|
+
},
|
|
48478
|
+
"releaseTag": "Public",
|
|
48479
|
+
"name": "SET_FOG_COLOR"
|
|
48480
|
+
},
|
|
48481
|
+
{
|
|
48482
|
+
"kind": "EnumMember",
|
|
48483
|
+
"canonicalReference": "server!WorldEvent.SET_FOG_FAR:member",
|
|
48484
|
+
"docComment": "",
|
|
48485
|
+
"excerptTokens": [
|
|
48486
|
+
{
|
|
48487
|
+
"kind": "Content",
|
|
48488
|
+
"text": "SET_FOG_FAR = "
|
|
48489
|
+
},
|
|
48490
|
+
{
|
|
48491
|
+
"kind": "Content",
|
|
48492
|
+
"text": "\"WORLD.SET_FOG_FAR\""
|
|
48493
|
+
}
|
|
48494
|
+
],
|
|
48495
|
+
"initializerTokenRange": {
|
|
48496
|
+
"startIndex": 1,
|
|
48497
|
+
"endIndex": 2
|
|
48498
|
+
},
|
|
48499
|
+
"releaseTag": "Public",
|
|
48500
|
+
"name": "SET_FOG_FAR"
|
|
48501
|
+
},
|
|
48502
|
+
{
|
|
48503
|
+
"kind": "EnumMember",
|
|
48504
|
+
"canonicalReference": "server!WorldEvent.SET_FOG_NEAR:member",
|
|
48505
|
+
"docComment": "",
|
|
48506
|
+
"excerptTokens": [
|
|
48507
|
+
{
|
|
48508
|
+
"kind": "Content",
|
|
48509
|
+
"text": "SET_FOG_NEAR = "
|
|
48510
|
+
},
|
|
48511
|
+
{
|
|
48512
|
+
"kind": "Content",
|
|
48513
|
+
"text": "\"WORLD.SET_FOG_NEAR\""
|
|
48514
|
+
}
|
|
48515
|
+
],
|
|
48516
|
+
"initializerTokenRange": {
|
|
48517
|
+
"startIndex": 1,
|
|
48518
|
+
"endIndex": 2
|
|
48519
|
+
},
|
|
48520
|
+
"releaseTag": "Public",
|
|
48521
|
+
"name": "SET_FOG_NEAR"
|
|
48522
|
+
},
|
|
48054
48523
|
{
|
|
48055
48524
|
"kind": "EnumMember",
|
|
48056
48525
|
"canonicalReference": "server!WorldEvent.SET_SKYBOX_INTENSITY:member",
|
|
@@ -48383,6 +48852,150 @@
|
|
|
48383
48852
|
"endIndex": 8
|
|
48384
48853
|
}
|
|
48385
48854
|
},
|
|
48855
|
+
{
|
|
48856
|
+
"kind": "PropertySignature",
|
|
48857
|
+
"canonicalReference": "server!WorldEventPayloads#\"WORLD.SET_FOG_COLOR\":member",
|
|
48858
|
+
"docComment": "/**\n * Emitted when the color of the world's fog is set.\n */\n",
|
|
48859
|
+
"excerptTokens": [
|
|
48860
|
+
{
|
|
48861
|
+
"kind": "Content",
|
|
48862
|
+
"text": "["
|
|
48863
|
+
},
|
|
48864
|
+
{
|
|
48865
|
+
"kind": "Reference",
|
|
48866
|
+
"text": "WorldEvent.SET_FOG_COLOR",
|
|
48867
|
+
"canonicalReference": "server!WorldEvent.SET_FOG_COLOR:member"
|
|
48868
|
+
},
|
|
48869
|
+
{
|
|
48870
|
+
"kind": "Content",
|
|
48871
|
+
"text": "]: "
|
|
48872
|
+
},
|
|
48873
|
+
{
|
|
48874
|
+
"kind": "Content",
|
|
48875
|
+
"text": "{\n world: "
|
|
48876
|
+
},
|
|
48877
|
+
{
|
|
48878
|
+
"kind": "Reference",
|
|
48879
|
+
"text": "World",
|
|
48880
|
+
"canonicalReference": "server!World:class"
|
|
48881
|
+
},
|
|
48882
|
+
{
|
|
48883
|
+
"kind": "Content",
|
|
48884
|
+
"text": ";\n color: "
|
|
48885
|
+
},
|
|
48886
|
+
{
|
|
48887
|
+
"kind": "Reference",
|
|
48888
|
+
"text": "RgbColor",
|
|
48889
|
+
"canonicalReference": "server!RgbColor:interface"
|
|
48890
|
+
},
|
|
48891
|
+
{
|
|
48892
|
+
"kind": "Content",
|
|
48893
|
+
"text": ";\n }"
|
|
48894
|
+
},
|
|
48895
|
+
{
|
|
48896
|
+
"kind": "Content",
|
|
48897
|
+
"text": ";"
|
|
48898
|
+
}
|
|
48899
|
+
],
|
|
48900
|
+
"isReadonly": false,
|
|
48901
|
+
"isOptional": false,
|
|
48902
|
+
"releaseTag": "Public",
|
|
48903
|
+
"name": "\"WORLD.SET_FOG_COLOR\"",
|
|
48904
|
+
"propertyTypeTokenRange": {
|
|
48905
|
+
"startIndex": 3,
|
|
48906
|
+
"endIndex": 8
|
|
48907
|
+
}
|
|
48908
|
+
},
|
|
48909
|
+
{
|
|
48910
|
+
"kind": "PropertySignature",
|
|
48911
|
+
"canonicalReference": "server!WorldEventPayloads#\"WORLD.SET_FOG_FAR\":member",
|
|
48912
|
+
"docComment": "/**\n * Emitted when the density of the world's fog is set.\n */\n",
|
|
48913
|
+
"excerptTokens": [
|
|
48914
|
+
{
|
|
48915
|
+
"kind": "Content",
|
|
48916
|
+
"text": "["
|
|
48917
|
+
},
|
|
48918
|
+
{
|
|
48919
|
+
"kind": "Reference",
|
|
48920
|
+
"text": "WorldEvent.SET_FOG_FAR",
|
|
48921
|
+
"canonicalReference": "server!WorldEvent.SET_FOG_FAR:member"
|
|
48922
|
+
},
|
|
48923
|
+
{
|
|
48924
|
+
"kind": "Content",
|
|
48925
|
+
"text": "]: "
|
|
48926
|
+
},
|
|
48927
|
+
{
|
|
48928
|
+
"kind": "Content",
|
|
48929
|
+
"text": "{\n world: "
|
|
48930
|
+
},
|
|
48931
|
+
{
|
|
48932
|
+
"kind": "Reference",
|
|
48933
|
+
"text": "World",
|
|
48934
|
+
"canonicalReference": "server!World:class"
|
|
48935
|
+
},
|
|
48936
|
+
{
|
|
48937
|
+
"kind": "Content",
|
|
48938
|
+
"text": ";\n far: number;\n }"
|
|
48939
|
+
},
|
|
48940
|
+
{
|
|
48941
|
+
"kind": "Content",
|
|
48942
|
+
"text": ";"
|
|
48943
|
+
}
|
|
48944
|
+
],
|
|
48945
|
+
"isReadonly": false,
|
|
48946
|
+
"isOptional": false,
|
|
48947
|
+
"releaseTag": "Public",
|
|
48948
|
+
"name": "\"WORLD.SET_FOG_FAR\"",
|
|
48949
|
+
"propertyTypeTokenRange": {
|
|
48950
|
+
"startIndex": 3,
|
|
48951
|
+
"endIndex": 6
|
|
48952
|
+
}
|
|
48953
|
+
},
|
|
48954
|
+
{
|
|
48955
|
+
"kind": "PropertySignature",
|
|
48956
|
+
"canonicalReference": "server!WorldEventPayloads#\"WORLD.SET_FOG_NEAR\":member",
|
|
48957
|
+
"docComment": "/**\n * Emitted when the density of the world's fog is set.\n */\n",
|
|
48958
|
+
"excerptTokens": [
|
|
48959
|
+
{
|
|
48960
|
+
"kind": "Content",
|
|
48961
|
+
"text": "["
|
|
48962
|
+
},
|
|
48963
|
+
{
|
|
48964
|
+
"kind": "Reference",
|
|
48965
|
+
"text": "WorldEvent.SET_FOG_NEAR",
|
|
48966
|
+
"canonicalReference": "server!WorldEvent.SET_FOG_NEAR:member"
|
|
48967
|
+
},
|
|
48968
|
+
{
|
|
48969
|
+
"kind": "Content",
|
|
48970
|
+
"text": "]: "
|
|
48971
|
+
},
|
|
48972
|
+
{
|
|
48973
|
+
"kind": "Content",
|
|
48974
|
+
"text": "{\n world: "
|
|
48975
|
+
},
|
|
48976
|
+
{
|
|
48977
|
+
"kind": "Reference",
|
|
48978
|
+
"text": "World",
|
|
48979
|
+
"canonicalReference": "server!World:class"
|
|
48980
|
+
},
|
|
48981
|
+
{
|
|
48982
|
+
"kind": "Content",
|
|
48983
|
+
"text": ";\n near: number;\n }"
|
|
48984
|
+
},
|
|
48985
|
+
{
|
|
48986
|
+
"kind": "Content",
|
|
48987
|
+
"text": ";"
|
|
48988
|
+
}
|
|
48989
|
+
],
|
|
48990
|
+
"isReadonly": false,
|
|
48991
|
+
"isOptional": false,
|
|
48992
|
+
"releaseTag": "Public",
|
|
48993
|
+
"name": "\"WORLD.SET_FOG_NEAR\"",
|
|
48994
|
+
"propertyTypeTokenRange": {
|
|
48995
|
+
"startIndex": 3,
|
|
48996
|
+
"endIndex": 6
|
|
48997
|
+
}
|
|
48998
|
+
},
|
|
48386
48999
|
{
|
|
48387
49000
|
"kind": "PropertySignature",
|
|
48388
49001
|
"canonicalReference": "server!WorldEventPayloads#\"WORLD.SET_SKYBOX_INTENSITY\":member",
|
|
@@ -49817,6 +50430,88 @@
|
|
|
49817
50430
|
"endIndex": 2
|
|
49818
50431
|
}
|
|
49819
50432
|
},
|
|
50433
|
+
{
|
|
50434
|
+
"kind": "PropertySignature",
|
|
50435
|
+
"canonicalReference": "server!WorldOptions#fogColor:member",
|
|
50436
|
+
"docComment": "/**\n * The color of the fog for the world. Defaults to ambient light color.\n */\n",
|
|
50437
|
+
"excerptTokens": [
|
|
50438
|
+
{
|
|
50439
|
+
"kind": "Content",
|
|
50440
|
+
"text": "fogColor?: "
|
|
50441
|
+
},
|
|
50442
|
+
{
|
|
50443
|
+
"kind": "Reference",
|
|
50444
|
+
"text": "RgbColor",
|
|
50445
|
+
"canonicalReference": "server!RgbColor:interface"
|
|
50446
|
+
},
|
|
50447
|
+
{
|
|
50448
|
+
"kind": "Content",
|
|
50449
|
+
"text": ";"
|
|
50450
|
+
}
|
|
50451
|
+
],
|
|
50452
|
+
"isReadonly": false,
|
|
50453
|
+
"isOptional": true,
|
|
50454
|
+
"releaseTag": "Public",
|
|
50455
|
+
"name": "fogColor",
|
|
50456
|
+
"propertyTypeTokenRange": {
|
|
50457
|
+
"startIndex": 1,
|
|
50458
|
+
"endIndex": 2
|
|
50459
|
+
}
|
|
50460
|
+
},
|
|
50461
|
+
{
|
|
50462
|
+
"kind": "PropertySignature",
|
|
50463
|
+
"canonicalReference": "server!WorldOptions#fogFar:member",
|
|
50464
|
+
"docComment": "/**\n * The maximum distance from the camera at which fog stops being applied.\n */\n",
|
|
50465
|
+
"excerptTokens": [
|
|
50466
|
+
{
|
|
50467
|
+
"kind": "Content",
|
|
50468
|
+
"text": "fogFar?: "
|
|
50469
|
+
},
|
|
50470
|
+
{
|
|
50471
|
+
"kind": "Content",
|
|
50472
|
+
"text": "number"
|
|
50473
|
+
},
|
|
50474
|
+
{
|
|
50475
|
+
"kind": "Content",
|
|
50476
|
+
"text": ";"
|
|
50477
|
+
}
|
|
50478
|
+
],
|
|
50479
|
+
"isReadonly": false,
|
|
50480
|
+
"isOptional": true,
|
|
50481
|
+
"releaseTag": "Public",
|
|
50482
|
+
"name": "fogFar",
|
|
50483
|
+
"propertyTypeTokenRange": {
|
|
50484
|
+
"startIndex": 1,
|
|
50485
|
+
"endIndex": 2
|
|
50486
|
+
}
|
|
50487
|
+
},
|
|
50488
|
+
{
|
|
50489
|
+
"kind": "PropertySignature",
|
|
50490
|
+
"canonicalReference": "server!WorldOptions#fogNear:member",
|
|
50491
|
+
"docComment": "/**\n * The minimum distance from the camera to start applying fog.\n */\n",
|
|
50492
|
+
"excerptTokens": [
|
|
50493
|
+
{
|
|
50494
|
+
"kind": "Content",
|
|
50495
|
+
"text": "fogNear?: "
|
|
50496
|
+
},
|
|
50497
|
+
{
|
|
50498
|
+
"kind": "Content",
|
|
50499
|
+
"text": "number"
|
|
50500
|
+
},
|
|
50501
|
+
{
|
|
50502
|
+
"kind": "Content",
|
|
50503
|
+
"text": ";"
|
|
50504
|
+
}
|
|
50505
|
+
],
|
|
50506
|
+
"isReadonly": false,
|
|
50507
|
+
"isOptional": true,
|
|
50508
|
+
"releaseTag": "Public",
|
|
50509
|
+
"name": "fogNear",
|
|
50510
|
+
"propertyTypeTokenRange": {
|
|
50511
|
+
"startIndex": 1,
|
|
50512
|
+
"endIndex": 2
|
|
50513
|
+
}
|
|
50514
|
+
},
|
|
49820
50515
|
{
|
|
49821
50516
|
"kind": "PropertySignature",
|
|
49822
50517
|
"canonicalReference": "server!WorldOptions#gravity:member",
|