UNPKG

@phaserjs/phaser

Version:
10 lines (9 loc) 172 B
export function Stepped(v, steps = 1) { if (v <= 0) { return 0; } else if (v >= 1) { return 1; } else { return ((steps * v | 0) + 1) * (1 / steps); } }