Du kannst nicht mehr als 25 Themen auswählen Themen müssen entweder mit einem Buchstaben oder einer Ziffer beginnen. Sie können Bindestriche („-“) enthalten und bis zu 35 Zeichen lang sein.

32 Zeilen
980 B

  1. local config = require("mj.luaScript.Common.2d.CommonMahjongConfig")
  2. config.HANDCARD_VIEW = "mj_dazhou.luaScript.Views.2d.HandCard_2d"
  3. config.MAHJONG_CARD = "mj_dazhou.luaScript.Views.2d.Card_2d"
  4. config.GROUP_BAGANG = "mj_dazhou.luaScript.Views.2d.GroupBaGang_2d"
  5. -- 花麻将多杠显示位置,对桌面组合牌有效
  6. config.OpDuoGangFlagPos = {
  7. [1] = {x = 47, y = 25, scale = 1.0, },
  8. [2] = {x = 9, y = 22, scale = 0.8, },
  9. [3] = {x = 11, y = 40, scale = 1.0, },
  10. [4] = {x = 11, y = 30, scale = 1.0, },
  11. };
  12. -- 只针对组合牌第四个麻将牌
  13. config.OpDuoGangFlagRotationConfig = {
  14. [1] = {x = 0, y = 0, z = 90},
  15. [2] = {x = 0, y = 0, z = 0},
  16. [3] = {x = 0, y = 0, z = -90},
  17. [4] = {x = 0, y = 0, z = 0},
  18. }
  19. -- 手牌每个麻将子偏移量
  20. -- HandCardOffset[viewId].x
  21. config.HandCardOffsetPos = {
  22. [1] = {x = 0, y = -32},
  23. [2] = {x = -2, y = 0},
  24. [3] = {x = 0, y = -32},
  25. [4] = {x = -1, y = 0},
  26. }
  27. return config