diff options
Diffstat (limited to 'extractor/gat_format.gd')
-rw-r--r-- | extractor/gat_format.gd | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/extractor/gat_format.gd b/extractor/gat_format.gd index 213972a..712657b 100644 --- a/extractor/gat_format.gd +++ b/extractor/gat_format.gd @@ -45,22 +45,22 @@ static func from_bytes(bytes: ByteStream) -> GATFormat: class Tile: ## Byte Type: f32 [br] ## Byte Length: 4 [br] - ## Orignal Coordinates_ (0, 0) + ## Orignal Coordinates: (0, 0) var bottom_left_altitude: int ## Byte Type: f32 [br] ## Byte Length: 4 [br] - ## Orignal Coordinates_ (1, 0) + ## Orignal Coordinates: (1, 0) var bottom_right_altitude: int ## Byte Type: f32 [br] ## Byte Length: 4 [br] - ## Orignal Coordinates_ (0, 1) + ## Orignal Coordinates: (0, 1) var top_left_altitude: int ## Byte Type: f32 [br] ## Byte Length: 4 [br] - ## Orignal Coordinates_ (1, 1) + ## Orignal Coordinates: (1, 1) var top_right_altitude: int ## Byte Type: u32 ?[br] |