Игра Маджонг | Mahjong game
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

35 lines
901B

  1. function Фишка()
  2. {
  3. this.позиция = null;
  4. this.узел = null;
  5. this.группа = null;
  6. this.нейтраль = null;
  7. this.выбор = null;
  8. }
  9. Фишка.prototype.показатьВыбор = function()
  10. {
  11. this.узел.задатьМатериал(this.выбор);
  12. }
  13. Фишка.prototype.показатьНейтраль = function()
  14. {
  15. this.узел.задатьМатериал(this.нейтраль);
  16. }
  17. Фишка.prototype.показать = function()
  18. {
  19. this.узел.задатьМаску(0x0);
  20. }
  21. Фишка.prototype.скрыть = function()
  22. {
  23. // Специальная маска OpenSceneGraph для скрытия узла от камеры.
  24. this.узел.задатьМаску(0xFFFFFFFF);
  25. }
  26. Object.defineProperty(Фишка.prototype, 'имя', {
  27. get: function()
  28. {
  29. return this.узел.имя;
  30. }
  31. });