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
;; -- UNREALSCRIPT -------------------------------------------------------------- | |
(require 'unrealscript-mode) | |
(defcustom udk-location "C:\\UDK\\UDK-2011-11\\" | |
"Directory where udk executables are found" | |
:type 'directory | |
:group 'udk) | |
(defcustom udk-map "TestMap" | |
"Name of the map to launch the Unreal game with" |
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
;; Unrealscript major mode | |
;; Copyright (C) 2012 John Connors | |
;; Author: John Connors | |
;; Keywords: extensions | |
;; This file is free software; you can redistribute it and/or modify | |
;; it under the terms of the GNU General Public License as published by | |
;; the Free Software Foundation; either version 2, or (at your option) |
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
;;; generic Emacs utility | |
;;; ------------------------------------------------------------------ | |
(defun add-subdirs-to-load-path (dir) | |
(let ((default-directory (concat dir "/"))) | |
(normal-top-level-add-subdirs-to-load-path))) | |
;;; basic load-path setup | |
;;; ------------------------------------------------------------------ |
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
class LavaLampGameInfo extends GameInfo; | |
defaultproperties | |
{ | |
PlayerControllerClass=class'LavaLamp.LavaLampPlayerController' | |
DefaultPawnClass=class'LavaLamp.LavaLampPawn' | |
} | |
event PostLogin( PlayerController NewPlayer ) |
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
(require 'color-theme) | |
(require 'mirror-mode) | |
(require 'python) | |
(require 'dired-aux) | |
(require 'yasnippet) | |
(require 'dedicated) | |
(require 'winner) | |
(require 'thingatpt) | |
(require 'doxygen) |
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
import bpy | |
import mathutils | |
def introspect_obj(o, txt): | |
print (txt) | |
if len(txt) > 200: | |
print ("Something is wrong") | |
print (txt) | |
return | |
type_o = type(o) |
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
;;; w32shell.el --- Helpers for inferior shells on w32 | |
;; Copyright (C) 2005, 2006, 2007 by Lennart Borgman | |
;; | |
;; Author: Lennart Borgman | |
;; Created: Tue Nov 22 01:07:13 2005 | |
;; Version: 0.52 | |
;; Last-Updated: Fri May 18 10:58:41 2007 (7200 +0200) | |
;; Keywords: | |
;; Compatibility: Emacs 22 |
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
import bpy | |
import mathutils | |
import types | |
# transform python property to lisp keyword | |
def lispify(s): | |
if ((s == None) or (s[-1:]==']')): | |
return None | |
result = s.split('.')[-1:] | |
result = ":" + result[0].upper() |
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
From 7fc6632ed9c0febc058fee3c40ce47830aa40ed9 Mon Sep 17 00:00:00 2001 | |
From: John Connors <[email protected]> | |
Date: Thu, 1 Sep 2011 12:46:31 +0100 | |
Subject: [PATCH] Fixing keycode scan | |
--- | |
src/win32/win32.lisp | 18 +++++++++++++----- | |
1 files changed, 13 insertions(+), 5 deletions(-) | |
diff --git a/src/win32/win32.lisp b/src/win32/win32.lisp |
OlderNewer