rename to wingbase
This commit is contained in:
parent
6f85d63839
commit
e53ff60ab7
24 changed files with 9 additions and 9 deletions
|
@ -1,4 +1,4 @@
|
||||||
Starbugs
|
Wingbase
|
||||||
===
|
===
|
||||||
|
|
||||||
This is a stupid little game where you fly around and bump into asteroids and stuff.
|
This is a stupid little game where you fly around and bump into asteroids and stuff.
|
||||||
|
|
2
index.js
2
index.js
|
@ -4,6 +4,6 @@
|
||||||
|
|
||||||
const packageJson = require('./package.json');
|
const packageJson = require('./package.json');
|
||||||
|
|
||||||
console.log(`Starbugs version ${packageJson.version} running.`);
|
console.log(`Wingbase version ${packageJson.version} running.`);
|
||||||
|
|
||||||
require('./server/')();
|
require('./server/')();
|
||||||
|
|
|
@ -1,11 +1,11 @@
|
||||||
{
|
{
|
||||||
"name": "starbugs",
|
"name": "wingbase",
|
||||||
"version": "0.0.1",
|
"version": "0.0.1",
|
||||||
"description": "Game or something",
|
"description": "2D multiplayer space arcade game",
|
||||||
"main": "index.js",
|
"main": "index.js",
|
||||||
"repository": {
|
"repository": {
|
||||||
"type": "git",
|
"type": "git",
|
||||||
"url": "bitbucket:Asraelite/starbugs"
|
"url": "bitbucket:Asraelite/wingbase"
|
||||||
},
|
},
|
||||||
"private": true,
|
"private": true,
|
||||||
"scripts": {
|
"scripts": {
|
||||||
|
|
|
@ -6,7 +6,7 @@
|
||||||
<link rel="stylesheet" type="text/css" href="css/styles.css">
|
<link rel="stylesheet" type="text/css" href="css/styles.css">
|
||||||
|
|
||||||
<title>
|
<title>
|
||||||
Starbugs
|
Wingbase
|
||||||
</title>
|
</title>
|
||||||
|
|
||||||
<script src="js/lib/socket.io.js"></script>
|
<script src="js/lib/socket.io.js"></script>
|
||||||
|
@ -16,7 +16,7 @@
|
||||||
<script src="starbugs.min.js"></script>
|
<script src="starbugs.min.js"></script>
|
||||||
</head>
|
</head>
|
||||||
<body>
|
<body>
|
||||||
<canvas id="starbugs_canvas">
|
<canvas id="wingbase_canvas">
|
||||||
Sorry, your browser does not currently support HTML5 Canvas.
|
Sorry, your browser does not currently support HTML5 Canvas.
|
||||||
</canvas>
|
</canvas>
|
||||||
</body>
|
</body>
|
||||||
|
|
|
@ -6,7 +6,7 @@ class Physics {
|
||||||
|
|
||||||
var b2DebugDraw = Box2D.Dynamics.b2DebugDraw;
|
var b2DebugDraw = Box2D.Dynamics.b2DebugDraw;
|
||||||
var debugDraw = new b2DebugDraw();
|
var debugDraw = new b2DebugDraw();
|
||||||
debugDraw.SetSprite(document.getElementById("starbugs_canvas").getContext("2d"));
|
debugDraw.SetSprite(document.getElementById("wingbase_canvas").getContext("2d"));
|
||||||
debugDraw.SetDrawScale(SCALE);
|
debugDraw.SetDrawScale(SCALE);
|
||||||
debugDraw.SetFillAlpha(0.3);
|
debugDraw.SetFillAlpha(0.3);
|
||||||
debugDraw.SetLineThickness(1.0);
|
debugDraw.SetLineThickness(1.0);
|
|
@ -9,7 +9,7 @@ const uglify = require('uglify-js');
|
||||||
function minifyJs(callback) {
|
function minifyJs(callback) {
|
||||||
callback = callback || function() {};
|
callback = callback || function() {};
|
||||||
|
|
||||||
var dir = path.join(__dirname, '../../public/js/starbugs');
|
var dir = path.join(__dirname, '../../public/js/wingbase');
|
||||||
var cache = '';
|
var cache = '';
|
||||||
var scripts = [];
|
var scripts = [];
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue