mirror of
https://github.com/tobspr/shapez.io.git
synced 2026-03-02 03:39:21 +00:00
Add small tutorial
This commit is contained in:
@@ -25,13 +25,8 @@ const essentialBareGameSprites = G_ALL_UI_IMAGES;
|
||||
const essentialBareGameSounds = [MUSIC.theme];
|
||||
|
||||
const additionalGameSprites = [];
|
||||
const additionalGameSounds = [];
|
||||
for (const key in SOUNDS) {
|
||||
additionalGameSounds.push(SOUNDS[key]);
|
||||
}
|
||||
for (const key in MUSIC) {
|
||||
additionalGameSounds.push(MUSIC[key]);
|
||||
}
|
||||
// @ts-ignore
|
||||
const additionalGameSounds = [...Object.values(SOUNDS), ...Object.values(MUSIC)];
|
||||
|
||||
export class BackgroundResourcesLoader {
|
||||
/**
|
||||
|
||||
@@ -93,8 +93,8 @@ export const globalConfig = {
|
||||
// disableZoomLimits: true,
|
||||
// showChunkBorders: true,
|
||||
// rewardsInstant: true,
|
||||
allBuildingsUnlocked: true,
|
||||
upgradesNoCost: true,
|
||||
// allBuildingsUnlocked: true,
|
||||
// upgradesNoCost: true,
|
||||
// disableUnlockDialog: true,
|
||||
// disableLogicTicks: true,
|
||||
// testClipping: true,
|
||||
|
||||
Reference in New Issue
Block a user