Apply recovery phase to any animation using preset
Korean: 프리셋을 사용한 복귀 적용
Convenience function for applying recovery with standard presets.
Base animation
Preset name ('fast', 'power', 'kick', 'combo', 'finishing')
Enhanced animation with recovery phase
import { UPPERCUT_ANIMATION } from './PunchAnimations';import { applyRecoveryPreset } from './EnhancedAttackAnimations';// Apply power recovery preset to uppercutconst enhancedUppercut = applyRecoveryPreset(UPPERCUT_ANIMATION, 'power'); Copy
import { UPPERCUT_ANIMATION } from './PunchAnimations';import { applyRecoveryPreset } from './EnhancedAttackAnimations';// Apply power recovery preset to uppercutconst enhancedUppercut = applyRecoveryPreset(UPPERCUT_ANIMATION, 'power');
프리셋복귀적용
Apply recovery phase to any animation using preset
Korean: 프리셋을 사용한 복귀 적용
Convenience function for applying recovery with standard presets.