Skip to content

Instantly share code, notes, and snippets.

;; License GNU/GPL
;; Author Jaroslav Meloun
(define (script-fu-remove-unused-colors img drawable)
(let* (
)
(gimp-image-undo-group-start img)
(gimp-convert-rgb img)
@jarnik
jarnik / Walking.cs
Last active October 27, 2016 07:47
Spacr rotation alignment
Floor floor = World.player.floor;
if (floor != null)
{
int stepTurn = 0;
if (Game.input.justPressed(GameInput.Action.WALK_TURN_LEFT))
{
stepTurn = -1;
}
if (Game.input.justPressed(GameInput.Action.WALK_TURN_RIGHT))
{