https://github.com/fstrahij/knight-puzzle
Game Knight Puzzle developed in Unity2018
https://github.com/fstrahij/knight-puzzle
puzzle-game unity2018 unity3d
Last synced: about 2 months ago
JSON representation
Game Knight Puzzle developed in Unity2018
- Host: GitHub
- URL: https://github.com/fstrahij/knight-puzzle
- Owner: fstrahij
- Created: 2019-07-26T19:14:22.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-07-27T15:28:10.000Z (almost 7 years ago)
- Last Synced: 2025-06-02T08:18:31.389Z (about 1 year ago)
- Topics: puzzle-game, unity2018, unity3d
- Language: C#
- Homepage:
- Size: 49.8 KB
- Stars: 0
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Knight-Puzzle
The game has 3D graphics, music and sounds. Goal of the puzzle is to collect all coins with knight figure. Knight can only move in "L" shape (like knight piece in chess). Knight can not move on the wall but can jump over them. The board on which the game is played is a rectangle. The layout of the level is defined in a text file that needs to be loaded of the disk. The board file is hot-swappable during gameplay: changing the file changes the board in the game.
# Text file example
##..##
#C...#
....C#
#....#
..K..#
#...##
# Symbol meaning
|Symbol|Name|Description|
|------|----|-----------|
|#|Wall|Knight can’t reach this location.|
|.|Empty|Knight can land here.|
|C|Coin|Collect all to finish the puzzle.|
|K|Knight|Marks the start location of the knight.|
# Screenshoots: