您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

globals.js 548B

12345678910111213141516171819202122
  1. /**
  2. * -------------------------------------------
  3. * Magic AR Basketball
  4. * A demo game of the encantar.js WebAR engine
  5. * -------------------------------------------
  6. * @fileoverview Global definitions
  7. * @author Alexandre Martins <alemartf(at)gmail.com> (https://github.com/alemart/encantar-js)
  8. */
  9. /** Number of balls per match */
  10. export const NUMBER_OF_BALLS = 5;
  11. /** The minimum score for each rank */
  12. export const RANK_TABLE = Object.freeze({
  13. 'S': 15,
  14. 'A+': 12,
  15. 'A': 11,
  16. 'B+': 8,
  17. 'B': 5,
  18. 'C': 2,
  19. 'F': 0
  20. });