Skip to content

Commit 244cce0

Browse files
committed
Fixing up the demos for Heroku
1 parent 0d906a2 commit 244cce0

22 files changed

+23
-23
lines changed

dist/demos/alpha-mask.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const BKG_IMAGE_PATH = ASSET_URL + '/assets/demo/bkg.jpg';
44
const CELLS_IMAGE_PATH = ASSET_URL + '/assets/demo/cells.png';

dist/demos/animatedsprite-demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const MC_IMAGE_PATH = ASSET_URL + '/assets/demo/mc.json';
44

dist/demos/batch.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const TINY_MAGGOT_IMAGE_PATH = ASSET_URL + '/assets/demo/tinyMaggot.png';
44

dist/demos/blendmodes.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const BG_ROTATE_IMAGE_PATH = ASSET_URL + '/assets/demo/BGrotate.jpg';
44
const FLOWER_TOP_IMAGE_PATH = ASSET_URL + '/assets/demo/flowerTop.png';

dist/demos/cacheAsBitmap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const MONSTERS_IMAGE_PATH = ASSET_URL + '/assets/demo/monsters.json';
44

dist/demos/dragging.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const BUNNY_IMAGE_PATH = ASSET_URL + '/assets/basic/bunny.png';
44

dist/demos/graphics-demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33

44
px.configImport({"pxFramework:": PIXI_PATH});

dist/demos/interactivity.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const BUTTON_TEST_BG_IMAGE_PATH = ASSET_URL + '/assets/demo/button_test_BG.jpg';
44
const BUTTON_IMAGE_PATH = ASSET_URL + '/assets/demo/button.png';

dist/demos/masking.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const BG_ROTATE_IMAGE_PATH = ASSET_URL + '/assets/demo/BGrotate.jpg';
44
const SCENE_ROTATE_IMAGE_PATH = ASSET_URL + '/assets/demo/SceneRotate.jpg';

dist/demos/render-texture-demo.js

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const BASE_IMAGE_PATH = ASSET_URL + '/assets/demo/';
44

@@ -57,7 +57,7 @@ px.import({ scene: 'px:scene.1.js',
5757
stuffContainer.addChild(item);
5858
items.push(item);
5959
}
60-
60+
6161
var count = 0;
6262
app.ticker.add(function() {
6363
for (var i = 0; i < items.length; i++) {

dist/demos/text-demo.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const TEXT_DEMO_BG_IMAGE_PATH = ASSET_URL + '/assets/demo/textDemoBG.jpg';
44

dist/demos/texture-rotate.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const FLOWER_TOP_IMAGE_PATH = ASSET_URL + '/assets/demo/flowerTop.png';
44

dist/demos/texture-swap.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const FLOWER_TOP_IMAGE_PATH = ASSET_URL + '/assets/demo/flowerTop.png';
44
const EGG_HEAD_IMAGE_PATH = ASSET_URL + '/assets/demo/eggHead.png';

dist/demos/tinting.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const EGG_HEAD_IMAGE_PATH = ASSET_URL + '/assets/demo/eggHead.png';
44

dist/demos/transparent-background.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const BUNNY_IMAGE_PATH = ASSET_URL + '/assets/basic/bunny.png';
44

dist/display/z-order.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const GREEN_IMAGE_PATH = ASSET_URL + '/assets/layer/square_green.png';
44
const BLUE_IMAGE_PATH = ASSET_URL + '/assets/layer/square_blue.png';

dist/layers/lighting.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const BG_IMAGE_PATH = ASSET_URL + '/assets/p2.jpeg';
44
const BUNNY_IMAGE_PATH = ASSET_URL + '/assets/basic/bunny.png';

dist/layers/z-order.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const GREEN_IMAGE_PATH = ASSET_URL + '/assets/layer/square_green.png';
44
const BLUE_IMAGE_PATH = ASSET_URL + '/assets/layer/square_blue.png';

dist/spine/dragon.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const DRAGON_JSON_PATH = ASSET_URL + '/assets/spine/dragon.json';
44

dist/spine/goblins.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const GOBLINS_JSON_PATH = ASSET_URL + '/assets/spine/goblins.json';
44

dist/spine/pixie.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const PIXIE_JSON_PATH = ASSET_URL + '/assets/spine/Pixie.json';
44
const BG_IMAGE_PATH = ASSET_URL + '/assets/spine/iP4_BGtile.jpg';

dist/spine/spineboy.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
const ASSET_URL = 'http://127.0.0.1:8081';
1+
const ASSET_URL = 'http://pxscene-pixi-dev.herokuapp.com';
22
const PIXI_PATH = ASSET_URL + '/pixi/';
33
const SPINEBOY_JSON_PATH = ASSET_URL + '/assets/spine/spineboy.json';
44

0 commit comments

Comments
 (0)