hytopia 0.4.1-dev.4 → 0.4.1-dev.6
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/bin/scripts.js +1 -1
- package/examples/hygrounds/assets/ui/index.html +1 -1
- package/package.json +4 -8
- package/server.js +115 -115
package/bin/scripts.js
CHANGED
@@ -104,7 +104,7 @@ function init() {
|
|
104
104
|
function installProjectDependencies() {
|
105
105
|
execSync('bun init --yes');
|
106
106
|
execSync('bun add hytopia@latest --force');
|
107
|
-
execSync('bun add @hytopia.com/assets --force');
|
107
|
+
execSync('bun add @hytopia.com/assets --force');
|
108
108
|
// execSync('bun pm trust mediasoup'); uncomment this when webrtc support ships.
|
109
109
|
}
|
110
110
|
|
@@ -1561,7 +1561,7 @@
|
|
1561
1561
|
width: 45px;
|
1562
1562
|
height: 45px;
|
1563
1563
|
-webkit-tap-highlight-color: transparent;
|
1564
|
-
touch-action:
|
1564
|
+
touch-action: none;
|
1565
1565
|
user-select: none;
|
1566
1566
|
transition: all 0.15s cubic-bezier(0.4, 0, 0.2, 1);
|
1567
1567
|
will-change: transform, background-color;
|
package/package.json
CHANGED
@@ -1,6 +1,6 @@
|
|
1
1
|
{
|
2
2
|
"name": "hytopia",
|
3
|
-
"version": "0.4.1-dev.
|
3
|
+
"version": "0.4.1-dev.6",
|
4
4
|
"description": "The HYTOPIA SDK makes it easy for developers to create massively multiplayer games using JavaScript or TypeScript.",
|
5
5
|
"main": "server.js",
|
6
6
|
"bin": {
|
@@ -49,11 +49,7 @@
|
|
49
49
|
"homepage": "https://github.com/hytopiagg/sdk#readme",
|
50
50
|
"dependencies": {
|
51
51
|
"archiver": "^7.0.1",
|
52
|
-
"
|
53
|
-
"
|
54
|
-
}
|
55
|
-
"trustedDependencies": [
|
56
|
-
"mediasoup",
|
57
|
-
"sharp"
|
58
|
-
]
|
52
|
+
"mediasoup": "3.15.7",
|
53
|
+
"@gltf-transform/cli": "4.1.1"
|
54
|
+
}
|
59
55
|
}
|