- Ceiling tiles in study room
- ( need help from designer )
Black Cavern black tiles when fallingBlackjack camera in fullscreenUpdate house with new expanded tmxCredits offset adjustmentBack from fullscreen stretchCharacter Selection reset bounce position
This file contains hidden or 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
--This is a snippet of a Mallet file | |
local Weapon = require 'weapon' | |
function Mallet.new(node, collider) | |
local mallet = Weapon.new(node, collider) | |
setmetatable(mallet, Mallet) | |
-- setup your mallet specific code |
This file contains hidden or 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
return { | |
name = 'abed', | |
offset = 5, | |
ow = 7, | |
costumes = { | |
{name='Abed Nadir', sheet='base'}, | |
{name='Alien', sheet='alien'}, | |
{name='Batman', sheet='batman'}, | |
{name='Bumblebee', sheet='bee'}, | |
-- {name='Cooperative Calligraphy', sheet='bottle'}, |
This file contains hidden or 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
diff --git a/src/debugger.lua b/src/debugger.lua | |
new file mode 100644 | |
index 0000000..59da4aa | |
--- /dev/null | |
+++ b/src/debugger.lua | |
@@ -0,0 +1,54 @@ | |
+local List = require 'list' | |
+local window = require 'window' | |
+ | |
+local Debugger = { on=true } |
This file contains hidden or 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
#!/bin/sh | |
USERNAME=$(id -un) | |
if [ $(uname) = 'Darwin' ]; then | |
SUBL_PATH=/Users/$USERNAME/Library/Application\ Support/Sublime\ Text\ 2/Packages | |
else | |
SUBL_PATH=/home/$USERNAME/.config/sublime-text-2/Packages | |
fi |
This file contains hidden or 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
function js_log() { | |
foreach(func_get_args() as $obj) { | |
if( gettype($obj) != 'resource' ) { | |
echo "<script>console.log(" . json_encode($obj) . ");</script>"; | |
} | |
} | |
} |
This file contains hidden or 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
<#macro vardump v> | |
<script> | |
var method = function(){}, | |
transform = function(){}, | |
macro = function(){}, | |
hash_ex = function(){}, | |
hash = function(){}, | |
sequence = function(){}, | |
collection = function(){}, | |
directive = function(){}, |
This file contains hidden or 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
# This is the easiest way to "reset" your master branch if you've jacked it up | |
# 1) Make sure you have a clean working directory | |
git status | |
# 2) Create a new temporary branch | |
git checkout -b temp_branch | |
# 3) Push the new temp_branch to github |
This file contains hidden or 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
{ | |
"studyroom-0.0.0": [ | |
"156,237,1,idle", | |
"156,237,1,idle", | |
"156,237,1,idle", | |
"156,237,1,idle", | |
"156,237,1,idle", | |
"157,237,1,walk", | |
"164,237,1,walk", | |
"178,237,1,walk", |
This file contains hidden or 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
/* | |
* http://www.myersdaily.org/joseph/javascript/md5-text.html | |
*/ | |
(function() { | |
var md5cycle = function(x, k) { | |
var a = x[0], b = x[1], c = x[2], d = x[3]; | |
a = ff(a, b, c, d, k[0], 7, -680876936); |
OlderNewer