소스 검색

Fix direction vectors

ApisNecros 1 년 전
부모
커밋
3b4fa90f34
1개의 변경된 파일4개의 추가작업 그리고 4개의 파일을 삭제
  1. 4 4
      starfish.js

+ 4 - 4
starfish.js

@@ -8,10 +8,10 @@ class CodeBox {
          * @type {Object}
          */
         this.directions = {
-            NORTH: [-1,  0],
-            EAST:  [ 0,  1],
-            SOUTH: [ 1,  0],
-            WEST:  [ 0, -1],
+            NORTH:  [ 0, -1],
+            EAST:   [ 1,  0],
+            SOUTH:  [ 0,  1],
+            WEST:   [-1,  0],
         };
         /**
          * The current vector of the pointer