PPiing / PPoong

for PingPong SPA
MIT License
7 stars 1 forks source link

고정적인 게임셋 설정 e.g. 경기장 비율, 패들 비율, 공 비율, #54

Closed jinbekim closed 2 years ago

jinbekim commented 2 years ago
  1. 천장에서 보는 뷰 기준
  2. 가로방향 : width, x, 긴쪽
  3. 세로방향: height, y, 짧은쪽
  4. 공: 한가운데 (0,0)

    export class SpecData {
    arena: Arena = {
    width: 700,
    height: 500,
    };
    
    paddle: Paddle = {
    width: 10,
    height: 100, // base width * option.scale (default: 1), 0.5, 1.5;
    speed: 10,
    };
    
    ball: Ball = {
    radius: 5,
    speed: 1, // base speed * option.scale (default: 5), 4, 7;
    };
    }