@hytopia.com/examples 1.0.46 → 1.0.49
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/frontiers-rpg-game/assets/audio/music/hytopia-main-theme.mp3 +0 -0
- package/frontiers-rpg-game/assets/models/items/.optimized/snowball/snowball-named-nodes.glb +0 -0
- package/frontiers-rpg-game/assets/models/items/.optimized/snowball/snowball.glb +0 -0
- package/frontiers-rpg-game/assets/models/items/.optimized/snowball/snowball.gltf.data.json +1 -0
- package/frontiers-rpg-game/assets/models/items/.optimized/snowball/snowball.gltf.md5 +1 -0
- package/frontiers-rpg-game/assets/models/items/snowball.gltf +1 -0
- package/frontiers-rpg-game/assets/models/players/.optimized/player/player-named-nodes.glb +0 -0
- package/frontiers-rpg-game/assets/models/players/.optimized/player/player.glb +0 -0
- package/frontiers-rpg-game/assets/models/players/.optimized/player/player.gltf.data.json +1 -1
- package/frontiers-rpg-game/assets/models/players/.optimized/player/player.gltf.md5 +1 -1
- package/frontiers-rpg-game/assets/models/players/player.gltf +1 -1
- package/frontiers-rpg-game/dev/persistence/player-player-1.json +1 -1
- package/hygrounds/assets/ui/index.html +11 -8
- package/hygrounds/classes/BotPlayerEntity.ts +1455 -0
- package/hygrounds/classes/ChestEntity.ts +6 -0
- package/hygrounds/classes/GameManager.ts +42 -2
- package/hygrounds/classes/GamePlayerEntity.ts +12 -2
- package/hygrounds/classes/GunEntity.ts +29 -0
- package/hygrounds/index.ts +10 -2
- package/package.json +1 -1
|
@@ -1 +1 @@
|
|
|
1
|
-
{"health":
|
|
1
|
+
{"health":81,"currentRegionId":"ratkin-nest","currentRegionSpawnFacingAngle":180,"currentRegionSpawnPoint":{"x":-31,"y":23,"z":-67},"skillExperience":[["agility",12]],"backpack":{"items":[]},"hotbar":{"items":[{"position":0,"itemId":"toy_sword"}]},"questLog":{"quests":[]},"storage":{"items":[]},"wearables":{"items":[]},"__version":161}
|
|
@@ -733,7 +733,7 @@
|
|
|
733
733
|
transform: translateY(-50%);
|
|
734
734
|
}
|
|
735
735
|
|
|
736
|
-
.game-start-announcement {
|
|
736
|
+
#ui-container .game-start-announcement {
|
|
737
737
|
position: fixed;
|
|
738
738
|
top: 50%;
|
|
739
739
|
left: 50%;
|
|
@@ -755,7 +755,7 @@
|
|
|
755
755
|
animation: announcementFade 5s ease-in-out forwards;
|
|
756
756
|
}
|
|
757
757
|
|
|
758
|
-
.winner-announcement {
|
|
758
|
+
#ui-container .winner-announcement {
|
|
759
759
|
position: fixed;
|
|
760
760
|
top: 50%;
|
|
761
761
|
left: 50%;
|
|
@@ -777,7 +777,7 @@
|
|
|
777
777
|
animation: winnerFade 5s ease-in-out forwards;
|
|
778
778
|
}
|
|
779
779
|
|
|
780
|
-
.rank-up-announcement {
|
|
780
|
+
#ui-container .rank-up-announcement {
|
|
781
781
|
position: fixed;
|
|
782
782
|
top: 0;
|
|
783
783
|
left: 0;
|
|
@@ -847,7 +847,7 @@
|
|
|
847
847
|
100% { opacity: 0; transform: scale(0.9); }
|
|
848
848
|
}
|
|
849
849
|
|
|
850
|
-
.hit-damage-container {
|
|
850
|
+
#ui-container .hit-damage-container {
|
|
851
851
|
position: fixed;
|
|
852
852
|
top: 50%;
|
|
853
853
|
left: 50%;
|
|
@@ -902,7 +902,7 @@
|
|
|
902
902
|
box-shadow: 0 0 10px rgba(0, 0, 0, 0.5);
|
|
903
903
|
}
|
|
904
904
|
|
|
905
|
-
.floating-number {
|
|
905
|
+
#ui-container .floating-number {
|
|
906
906
|
position: absolute;
|
|
907
907
|
color: #ffffff;
|
|
908
908
|
font-weight: bold;
|
|
@@ -1172,7 +1172,7 @@
|
|
|
1172
1172
|
z-index: 1;
|
|
1173
1173
|
}
|
|
1174
1174
|
|
|
1175
|
-
.exp-gain-indicator {
|
|
1175
|
+
#ui-container .exp-gain-indicator {
|
|
1176
1176
|
position: absolute;
|
|
1177
1177
|
z-index: 9999;
|
|
1178
1178
|
bottom: 100%; /* Start just above the bar */
|
|
@@ -1260,7 +1260,7 @@
|
|
|
1260
1260
|
height: 48px;
|
|
1261
1261
|
}
|
|
1262
1262
|
|
|
1263
|
-
.scope-overlay {
|
|
1263
|
+
#ui-container .scope-overlay {
|
|
1264
1264
|
position: fixed;
|
|
1265
1265
|
top: 0;
|
|
1266
1266
|
left: 0;
|
|
@@ -1281,7 +1281,7 @@
|
|
|
1281
1281
|
width: 25% !important;
|
|
1282
1282
|
}
|
|
1283
1283
|
|
|
1284
|
-
.damage-indicator-container {
|
|
1284
|
+
#ui-container .damage-indicator-container {
|
|
1285
1285
|
position: fixed;
|
|
1286
1286
|
top: 0;
|
|
1287
1287
|
left: 0;
|
|
@@ -1400,6 +1400,7 @@
|
|
|
1400
1400
|
flex-direction: column;
|
|
1401
1401
|
gap: 5px;
|
|
1402
1402
|
overflow-y: scroll;
|
|
1403
|
+
-webkit-overflow-scrolling: touch;
|
|
1403
1404
|
}
|
|
1404
1405
|
|
|
1405
1406
|
.leaderboard-player {
|
|
@@ -1550,6 +1551,7 @@
|
|
|
1550
1551
|
bottom: 113px;
|
|
1551
1552
|
right: 118px;
|
|
1552
1553
|
user-select: none;
|
|
1554
|
+
pointer-events: auto !important;
|
|
1553
1555
|
}
|
|
1554
1556
|
|
|
1555
1557
|
body.mobile .mobile-button {
|
|
@@ -1571,6 +1573,7 @@
|
|
|
1571
1573
|
font-weight: bold;
|
|
1572
1574
|
color: rgba(255, 255, 255, 0.8);
|
|
1573
1575
|
text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.8);
|
|
1576
|
+
pointer-events: auto !important;
|
|
1574
1577
|
}
|
|
1575
1578
|
|
|
1576
1579
|
body.mobile .mobile-button.active {
|