Skip to content

Commit

Permalink
feat: スライドの全サンプルプログラムを問題として追加する (#96)
Browse files Browse the repository at this point in the history
Co-authored-by: Sakamoto, Kazunori <[email protected]>
  • Loading branch information
hishiwat and exKAZUu authored Sep 17, 2024
1 parent e27559e commit d4a64b9
Show file tree
Hide file tree
Showing 5 changed files with 1,206 additions and 131 deletions.
1 change: 1 addition & 0 deletions .idea/trace-dojo.iml

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion src/components/organisms/TurtleGraphics.tsx
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ export const TurtleGraphics = forwardRef<TurtleGraphicsHandle, TurtleGraphicsPro
}

const updatedCharacter = { ...selectedCharacter, x: updatedX, y: updatedY };
updateCellColor('.' as ColorChar, selectedCharacter.x, selectedCharacter.y);
updateCellColor(updatedCharacter.color as ColorChar, updatedCharacter.x, updatedCharacter.y);
updateCharacters(updatedCharacter);
};

Expand Down
Loading

0 comments on commit d4a64b9

Please sign in to comment.