mirror of
https://github.com/wassname/phaser.git
synced 2026-08-13 12:30:11 +08:00
Tilemap collision working but needs speeding up
This commit is contained in:
+21
@@ -0,0 +1,21 @@
|
||||
module.exports = function(grunt) {
|
||||
grunt.log.writeln('foo', 'bar', 'baz');
|
||||
|
||||
grunt.initConfig({
|
||||
clean: {
|
||||
all: [
|
||||
'deep/**',
|
||||
],
|
||||
exclude: [
|
||||
'deep/**',
|
||||
'!deep/deep.txt'
|
||||
],
|
||||
}
|
||||
});
|
||||
|
||||
grunt.registerMultiTask('clean', function() {
|
||||
this.filesSrc.forEach(function(filepath) {
|
||||
console.log('delete', filepath);
|
||||
});
|
||||
});
|
||||
};
|
||||
Reference in New Issue
Block a user