Основа Маджонга | Mahjong's base
25개 이상의 토픽을 선택하실 수 없습니다. Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

сцена|scene.js 520B

123456789101112131415161718192021
  1. const ИМЯ = "ОМ | MB";
  2. // // // //
  3. СоздатьФишку = мир =>
  4. {
  5. мир.загрузчик = new THREE.GLTFLoader();
  6. var адрес = "https://git.opengamestudio.org/mahjong/mahjong-modeli-models/raw/branch/master/фишка|tile.gltf";
  7. мир.загрузчик.load(
  8. адрес,
  9. function(gltf) {
  10. мир.сцена.add(gltf.scene);
  11. },
  12. null,
  13. function(error) {
  14. console.error("ОШИБКА | ERROR", error);
  15. }
  16. );
  17. };