VarValue.ts 312 B

1234567891011121314
  1. import {CELL_WIDTH, CELL_HEIGHT} from "../Model/ConstValue.js"
  2. cc.Class({
  3. extends:cc.Component,
  4. onLoad(){
  5. this.grid_width = 7;
  6. this.grid_height = 7;
  7. this.grid_pixel_width = this.grid_width * CELL_WIDTH;
  8. this.grid_pixel_height = this.grid_height * CELL_HEIGHT;
  9. }
  10. })