Основа Маджонга | Mahjong's base
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.

22 lignes
520B

  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. };