修改坐标系
This commit is contained in:
@@ -6,8 +6,8 @@ from typing import Dict, Tuple
|
||||
_DIRECTION_DELTAS: Dict[str, Tuple[int, int, int]] = {
|
||||
"east": (1, 0, 0),
|
||||
"west": (-1, 0, 0),
|
||||
"north": (0, 1, 0),
|
||||
"south": (0, -1, 0),
|
||||
"north": (0, -1, 0),
|
||||
"south": (0, 1, 0),
|
||||
"up": (0, 0, 1),
|
||||
"down": (0, 0, -1),
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user