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
extends TileMap | |
const TREES_TILE = 0 | |
const GRASS_TILE = 1 | |
const PLAINS_TILE = 2 | |
var rng = RandomNumberGenerator.new() | |
var _k = 0 | |
var _lo = 0 |
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
fdfdfdfdfdfdfdfdfdf |
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
;; processing-mode.el | |
;; Processing.org language based on Java mode. Adds keyword | |
;; highlighting for all recognized Processing language functions. | |
;; Allows compilation of buffers and "sketches" from within Emacs but | |
;; only for more recent versions of Processing. | |
;; Copyright (C) 2008, 2009 Rudolf Olah <[email protected]> | |
;; Modified for Processing 2.0 by Bunny Blake <[email protected]> |