Skip to content

Commit

Permalink
Fix renderer build errors
Browse files Browse the repository at this point in the history
  • Loading branch information
delasy committed Nov 2, 2024
1 parent 00c6dd2 commit c225954
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions renderer/Renderer.ts
Original file line number Diff line number Diff line change
Expand Up @@ -297,8 +297,8 @@ export class Renderer {
) {
rendererItem.addEffect({
type: RendererEffectType.AssetSwap,
duration: REPLAY_SPEED,
every: REPLAY_SPEED / 4,
duration: DEFAULT_REPLAY_SPEED,
every: DEFAULT_REPLAY_SPEED / 4,
startedAt: Date.now(),
steps: [
assets.zombieWalkingFrame2,
Expand All @@ -315,8 +315,8 @@ export class Renderer {
) {
rendererItem.addEffect({
type: RendererEffectType.AssetSwap,
duration: REPLAY_SPEED,
every: REPLAY_SPEED / 4,
duration: DEFAULT_REPLAY_SPEED,
every: DEFAULT_REPLAY_SPEED / 4,
startedAt: Date.now(),
steps: [
assets.zombieIdleFrame2,
Expand Down

0 comments on commit c225954

Please sign in to comment.