This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
func get_surrounding_tiles(current_tile): | |
var surrounding_tiles = [] | |
var target_tile | |
for y in 3: | |
for x in 3: | |
target_tile = current_tile + Vector2(x - 1, y - 1) | |
if current_tile == target_tile: | |
continue |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# -*- mode: conf; -*- | |
# | |
# NOTE: Settings generally support python interpolation. This means | |
# values can contain python format strings which refer to other values | |
# in the same section, or values in a special DEFAULT section. This | |
# allows you for example to use common settings for multiple accounts: | |
# | |
# [Repository Gmail1] | |
# trashfolder: %(gmailtrashfolder)s | |
# |