hytopia 0.1.67 → 0.1.69
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.sceneui.md +33 -0
- package/docs/server.sceneui.setviewdistance.md +53 -0
- package/docs/server.sceneui.viewdistance.md +11 -0
- package/docs/server.sceneuioptions.md +19 -0
- package/docs/server.sceneuioptions.viewdistance.md +13 -0
- package/docs/server.world.ambientlightcolor.md +13 -0
- package/docs/server.world.ambientlightintensity.md +13 -0
- package/docs/server.world.directionallightcolor.md +13 -0
- package/docs/server.world.directionallightintensity.md +13 -0
- package/docs/server.world.directionallightposition.md +13 -0
- package/docs/server.world.md +175 -0
- package/docs/server.world.setambientlightcolor.md +53 -0
- package/docs/server.world.setambientlightintensity.md +53 -0
- package/docs/server.world.setdirectionallightcolor.md +53 -0
- package/docs/server.world.setdirectionallightintensity.md +53 -0
- package/docs/server.world.setdirectionallightposition.md +53 -0
- package/docs/server.worldoptions.ambientlightcolor.md +13 -0
- package/docs/server.worldoptions.ambientlightintensity.md +13 -0
- package/docs/server.worldoptions.directionallightcolor.md +13 -0
- package/docs/server.worldoptions.directionallightintensity.md +13 -0
- package/docs/server.worldoptions.directionallightposition.md +13 -0
- package/docs/server.worldoptions.md +95 -0
- package/package.json +1 -1
- package/server.api.json +653 -14
- package/server.d.ts +60 -0
- package/server.js +87 -87
@@ -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) > [WorldOptions](./server.worldoptions.md) > [ambientLightIntensity](./server.worldoptions.ambientlightintensity.md)
|
4
|
+
|
5
|
+
## WorldOptions.ambientLightIntensity property
|
6
|
+
|
7
|
+
The intensity of the ambient light. 0 to 1+
|
8
|
+
|
9
|
+
**Signature:**
|
10
|
+
|
11
|
+
```typescript
|
12
|
+
ambientLightIntensity?: number;
|
13
|
+
```
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [server](./server.md) > [WorldOptions](./server.worldoptions.md) > [directionalLightColor](./server.worldoptions.directionallightcolor.md)
|
4
|
+
|
5
|
+
## WorldOptions.directionalLightColor property
|
6
|
+
|
7
|
+
The color of the directional light.
|
8
|
+
|
9
|
+
**Signature:**
|
10
|
+
|
11
|
+
```typescript
|
12
|
+
directionalLightColor?: 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) > [WorldOptions](./server.worldoptions.md) > [directionalLightIntensity](./server.worldoptions.directionallightintensity.md)
|
4
|
+
|
5
|
+
## WorldOptions.directionalLightIntensity property
|
6
|
+
|
7
|
+
The intensity of the directional light. 0 to 1+
|
8
|
+
|
9
|
+
**Signature:**
|
10
|
+
|
11
|
+
```typescript
|
12
|
+
directionalLightIntensity?: number;
|
13
|
+
```
|
@@ -0,0 +1,13 @@
|
|
1
|
+
<!-- Do not edit this file. It is automatically generated by API Documenter. -->
|
2
|
+
|
3
|
+
[Home](./index.md) > [server](./server.md) > [WorldOptions](./server.worldoptions.md) > [directionalLightPosition](./server.worldoptions.directionallightposition.md)
|
4
|
+
|
5
|
+
## WorldOptions.directionalLightPosition property
|
6
|
+
|
7
|
+
The position the directional light originates from.
|
8
|
+
|
9
|
+
**Signature:**
|
10
|
+
|
11
|
+
```typescript
|
12
|
+
directionalLightPosition?: Vector3Like;
|
13
|
+
```
|
@@ -37,6 +37,101 @@ Description
|
|
37
37
|
</th></tr></thead>
|
38
38
|
<tbody><tr><td>
|
39
39
|
|
40
|
+
[ambientLightColor?](./server.worldoptions.ambientlightcolor.md)
|
41
|
+
|
42
|
+
|
43
|
+
</td><td>
|
44
|
+
|
45
|
+
|
46
|
+
</td><td>
|
47
|
+
|
48
|
+
[RgbColor](./server.rgbcolor.md)
|
49
|
+
|
50
|
+
|
51
|
+
</td><td>
|
52
|
+
|
53
|
+
_(Optional)_ The color of the ambient light.
|
54
|
+
|
55
|
+
|
56
|
+
</td></tr>
|
57
|
+
<tr><td>
|
58
|
+
|
59
|
+
[ambientLightIntensity?](./server.worldoptions.ambientlightintensity.md)
|
60
|
+
|
61
|
+
|
62
|
+
</td><td>
|
63
|
+
|
64
|
+
|
65
|
+
</td><td>
|
66
|
+
|
67
|
+
number
|
68
|
+
|
69
|
+
|
70
|
+
</td><td>
|
71
|
+
|
72
|
+
_(Optional)_ The intensity of the ambient light. 0 to 1+
|
73
|
+
|
74
|
+
|
75
|
+
</td></tr>
|
76
|
+
<tr><td>
|
77
|
+
|
78
|
+
[directionalLightColor?](./server.worldoptions.directionallightcolor.md)
|
79
|
+
|
80
|
+
|
81
|
+
</td><td>
|
82
|
+
|
83
|
+
|
84
|
+
</td><td>
|
85
|
+
|
86
|
+
[RgbColor](./server.rgbcolor.md)
|
87
|
+
|
88
|
+
|
89
|
+
</td><td>
|
90
|
+
|
91
|
+
_(Optional)_ The color of the directional light.
|
92
|
+
|
93
|
+
|
94
|
+
</td></tr>
|
95
|
+
<tr><td>
|
96
|
+
|
97
|
+
[directionalLightIntensity?](./server.worldoptions.directionallightintensity.md)
|
98
|
+
|
99
|
+
|
100
|
+
</td><td>
|
101
|
+
|
102
|
+
|
103
|
+
</td><td>
|
104
|
+
|
105
|
+
number
|
106
|
+
|
107
|
+
|
108
|
+
</td><td>
|
109
|
+
|
110
|
+
_(Optional)_ The intensity of the directional light. 0 to 1+
|
111
|
+
|
112
|
+
|
113
|
+
</td></tr>
|
114
|
+
<tr><td>
|
115
|
+
|
116
|
+
[directionalLightPosition?](./server.worldoptions.directionallightposition.md)
|
117
|
+
|
118
|
+
|
119
|
+
</td><td>
|
120
|
+
|
121
|
+
|
122
|
+
</td><td>
|
123
|
+
|
124
|
+
[Vector3Like](./server.vector3like.md)
|
125
|
+
|
126
|
+
|
127
|
+
</td><td>
|
128
|
+
|
129
|
+
_(Optional)_ The position the directional light originates from.
|
130
|
+
|
131
|
+
|
132
|
+
</td></tr>
|
133
|
+
<tr><td>
|
134
|
+
|
40
135
|
[gravity?](./server.worldoptions.gravity.md)
|
41
136
|
|
42
137
|
|