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/htdocs/lib/weltmeister/edit-entities.js b/htdocs/lib/weltmeister/edit-entities.js | |
index f9d9250..6272f3e 100644 | |
--- a/htdocs/lib/weltmeister/edit-entities.js | |
+++ b/htdocs/lib/weltmeister/edit-entities.js | |
@@ -141,7 +141,7 @@ wm.EditEntities = ig.Class.extend({ | |
for( var i = 0; i < this.entities.length; i++ ) { | |
var ent = this.entities[i]; | |
if( ent.touches(this.selector) ) { | |
- this.selector.offset = {x: (x - ent.pos.x + ent.offset.x), y: (y - ent.pos.y + ent.offset.y)}; | |
+ this.selector.offset = {x: (x - ent.pos.x), y: (y - ent.pos.y)}; |
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 () { | |
// Extends the base Object with data getter/setter and event target | |
var proto = Object.prototype; | |
proto._data = {}; | |
proto._listeners = {}; | |
proto.set = function (key, value) { |
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
<!DOCTYPE html> | |
<html lang="en"> | |
<head> | |
<title>WebSocket Client</title> | |
<style> | |
#output { | |
border: solid 1px #000; | |
} | |
</style> | |
</head> |
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
ctx.save(); | |
// 50% opacity | |
// Anything drawn after this call (but before call .restore) will be drawn at 50% opacity | |
ctx.globalAlpha = 0.5; | |
ctx.drawImage( | |
spriteSourceImage, | |
sourceX, sourceY, sourceWidth, sourceHeight, | |
destX, destY, destWidth, destHeight |
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
if ( | |
something && | |
!somethingElse && | |
otherThing === null) { | |
callFunction(); | |
} |
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/libtiled/libtiled.pro b/src/libtiled/libtiled.pro | |
index bd24e9c..5438f80 100644 | |
--- a/src/libtiled/libtiled.pro | |
+++ b/src/libtiled/libtiled.pro | |
@@ -31,3 +31,8 @@ mac { | |
ppc | |
QMAKE_MAC_SDK = /Developer/SDKs/MacOSX10.5.sdk | |
} | |
+ | |
+macx { |
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
<!DOCTYPE html> | |
<html> | |
<head> | |
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8"> | |
<title>Canvas Performance Demo</title> | |
</head> | |
<body> | |
<div> | |
<h1>Canvas Performance Test</h1> |
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
-- I used to do it like this: | |
SELECT * FROM table WHERE | |
hurr | |
AND (foo = 'bar') | |
AND (bar = 'foo') | |
-- Then later I spaced it out even more: | |
SELECT |
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
var myObject = function (someParam) { | |
var privateMember = "foobar"; | |
return { | |
publicMethod: function () { | |
return "Hi! " + someParam + " " + privateMember; | |
} | |
}; | |
NewerOlder