Files
mahjong-osnova-base/сцена|scene.js

22 lines
520 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.

const ИМЯ = "ОМ | MB";
// // // //
СоздатьФишку = мир =>
{
мир.загрузчик = new THREE.GLTFLoader();
var адрес = "https://git.opengamestudio.org/mahjong/mahjong-modeli-models/raw/branch/master/фишка|tile.gltf";
мир.загрузчик.load(
адрес,
function(gltf) {
мир.сцена.add(gltf.scene);
},
null,
function(error) {
console.error("ОШИБКА | ERROR", error);
}
);
};