fix(lobby): 로비 이동·점프를 기본값으로 — InputSpeed 5→1.4, JumpForce 5→1.23 (P15)
기존 5/5는 보행 ~9u/s·점프 상승 14u로 과함. freeze가 안 건드린 intact RigidbodyComponent.WalkSpeed(1.4)/WalkJump(1.23) 기본값에 맞춤. 실측: 보행 2.5u/s, 점프 상승 1.79u로 정상화. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
This commit is contained in:
@@ -6,9 +6,11 @@ import { writeFileSync } from 'node:fs';
|
||||
// 공격 키(LeftControl) 바인딩은 SlayDeckController(/common, 1회 등록·로비 가드)에서 처리 — 여기 두지 않음.
|
||||
// 정찰: 이동에는 RigidbodyComponent.WalkAcceleration(가속)과 MovementComponent.InputSpeed(속도)가
|
||||
// 둘 다 양수여야 함 — freeze-turn-player가 둘 다 0으로 만들었으므로 둘 다 복원해야 걷는다(실측 확인).
|
||||
// 값은 freeze가 건드리지 않은 intact RigidbodyComponent.WalkSpeed(1.4)/WalkJump(1.23) = 기본값에 맞춤.
|
||||
// (실측: InputSpeed 1.4→보행 ~2.5u/s, JumpForce 1.23→점프 상승 1.79u. 이전 5/5는 ~9u/s·상승 14u로 과함.)
|
||||
const WALK_ACCEL = 0.7;
|
||||
const WALK_SPEED = 5;
|
||||
const JUMP_FORCE = 5;
|
||||
const WALK_SPEED = 1.4;
|
||||
const JUMP_FORCE = 1.23;
|
||||
const PROX = 1.2; // 근접 임계(맵 NPC 간격 2.5와 분리)
|
||||
|
||||
function prop(Type, Name, DefaultValue = 'nil') {
|
||||
|
||||
Reference in New Issue
Block a user