Files
J/101.ресурсы.js

30 lines
677 B
JavaScript
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

мир.ресурсы = {
изображения: {
основа: "р/отладка/основа.jpg",
},
звуки: {
цикл: "р/звуки/555803__ddmyzik__sunset-loop.wav",
},
};
мир.настройки.scene.preload = function()
{
const изо = мир.ресурсы.изображения;
if (изо)
{
for (имя in изо)
{
this.load.image(имя, изо[имя]);
}
}
const звуки = мир.ресурсы.звуки;
if (звуки)
{
for (имя in звуки)
{
this.load.audio(имя, звуки[имя]);
}
}
};