mirror of
https://github.com/wassname/phaser.git
synced 2026-08-06 13:31:05 +08:00
Tilemap collision working but needs speeding up
This commit is contained in:
+1
@@ -0,0 +1 @@
|
||||
foo
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
module.exports = function(grunt) {
|
||||
|
||||
grunt.registerTask('print', 'Print the specified text.', function(text) {
|
||||
console.log('OUTPUT: ' + text);
|
||||
// console.log(process.cwd());
|
||||
});
|
||||
|
||||
};
|
||||
+1
@@ -0,0 +1 @@
|
||||
var a = 1;
|
||||
+1
@@ -0,0 +1 @@
|
||||
var b = 2;
|
||||
+11
@@ -0,0 +1,11 @@
|
||||
|
||||
/* THIS
|
||||
* IS
|
||||
* A
|
||||
* SAMPLE
|
||||
* BANNER!
|
||||
*/
|
||||
|
||||
// Comment
|
||||
|
||||
/* Comment */
|
||||
+7
@@ -0,0 +1,7 @@
|
||||
|
||||
/*! SAMPLE
|
||||
* BANNER */
|
||||
|
||||
// Comment
|
||||
|
||||
/* Comment */
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
|
||||
// This is
|
||||
// A sample
|
||||
// Banner
|
||||
|
||||
// But this is not
|
||||
|
||||
/* And neither
|
||||
* is this
|
||||
*/
|
||||
+1
@@ -0,0 +1 @@
|
||||
@echo done
|
||||
+2
@@ -0,0 +1,2 @@
|
||||
#!/bin/bash
|
||||
echo "done"
|
||||
Generated
Vendored
+4
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"foo": "Ação é isso aí",
|
||||
"bar": ["ømg", "pønies"]
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
Ação é isso aí
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
foo: Ação é isso aí
|
||||
bar:
|
||||
- ømg
|
||||
- pønies
|
||||
BIN
Binary file not shown.
+1
@@ -0,0 +1 @@
|
||||
foo
|
||||
BIN
Binary file not shown.
|
After Width: | Height: | Size: 3.9 KiB |
+17
@@ -0,0 +1,17 @@
|
||||
// This is a test fixture for a case where spawn receives incomplete
|
||||
// multibyte strings in separate data events.
|
||||
|
||||
// A multibyte buffer containing all our output. We will slice it later.
|
||||
// In this case we are using a Japanese word for hello / good day, where each
|
||||
// character takes three bytes.
|
||||
var fullOutput = new Buffer('こんにちは');
|
||||
|
||||
// Output one full character and one third of a character
|
||||
process.stdout.write(fullOutput.slice(0, 4));
|
||||
|
||||
// Output the rest of the string
|
||||
process.stdout.write(fullOutput.slice(4));
|
||||
|
||||
// Do the same for stderr
|
||||
process.stderr.write(fullOutput.slice(0, 4));
|
||||
process.stderr.write(fullOutput.slice(4));
|
||||
+9
@@ -0,0 +1,9 @@
|
||||
|
||||
var code = Number(process.argv[2]);
|
||||
|
||||
process.stdout.write('stdout\n');
|
||||
process.stderr.write('stderr\n');
|
||||
|
||||
// Use instead of process.exit to ensure stdout/stderr are flushed
|
||||
// before exiting in Windows (Tested in Node.js v0.8.7)
|
||||
require('../../lib/util/exit').exit(code);
|
||||
+1
@@ -0,0 +1 @@
|
||||
Version: <%= grunt.version %>, today: <%= grunt.template.today("yyyy-mm-dd") %>.
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"foo": "bar",
|
||||
"baz": [1, 2, 3]
|
||||
}
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"foo": "Ação é isso aí",
|
||||
"bar": ["ømg", "pønies"]
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
Ação é isso aí
|
||||
+4
@@ -0,0 +1,4 @@
|
||||
foo: Ação é isso aí
|
||||
bar:
|
||||
- ømg
|
||||
- pønies
|
||||
Reference in New Issue
Block a user