mirror of
https://github.com/logsol/chuck.js.git
synced 2026-05-11 10:37:34 +00:00
centered images in image layers
This commit is contained in:
parent
9c9db8ca8c
commit
357ef181d9
4 changed files with 10 additions and 52 deletions
|
|
@ -90,37 +90,8 @@ function (Parent, Settings, Nc, PIXI, AbstractLayer) {
|
||||||
|
|
||||||
Level.prototype.setupLayer = function(options, behind, referenceId) {
|
Level.prototype.setupLayer = function(options, behind, referenceId) {
|
||||||
Parent.prototype.setupLayer.call(this, options, behind, referenceId);
|
Parent.prototype.setupLayer.call(this, options, behind, referenceId);
|
||||||
console.log(options.layerId, behind, referenceId);
|
|
||||||
Nc.trigger(Nc.ns.client.view.layer.createAndInsert, options.layerId, 1, behind, referenceId);
|
Nc.trigger(Nc.ns.client.view.layer.createAndInsert, options.layerId, 1, behind, referenceId);
|
||||||
};
|
};
|
||||||
|
|
||||||
/*
|
|
||||||
Level.prototype.createItems = function(options) {
|
|
||||||
options.layerId = AbstractLayer.ID.ITEM;
|
|
||||||
Nc.trigger(Nc.ns.client.view.layer.createAndInsert, options.layerId, 1, AbstractLayer.ID.SPAWN, true);
|
|
||||||
|
|
||||||
Parent.prototype.createItems.call(this, options);
|
|
||||||
};
|
|
||||||
|
|
||||||
Level.prototype.createTiles = function(options) {
|
|
||||||
console.log('client level createTiles');
|
|
||||||
options.layerId = AbstractLayer.ID.TILE;
|
|
||||||
Nc.trigger(Nc.ns.client.view.layer.createAndInsert, options.layerId, 1, AbstractLayer.ID.SPAWN, true);
|
|
||||||
|
|
||||||
Parent.prototype.createTiles.call(this, options);
|
|
||||||
};
|
|
||||||
|
|
||||||
Level.prototype.createSpawnPoints = function(options) {
|
|
||||||
options.layerId = AbstractLayer.ID.SPAWN;
|
|
||||||
Nc.trigger(Nc.ns.client.view.layer.createAndInsert, options.layerId, 1);
|
|
||||||
|
|
||||||
Parent.prototype.createSpawnPoints.call(this, options);
|
|
||||||
};
|
|
||||||
|
|
||||||
Level.prototype.createContainer = function(options) {
|
|
||||||
|
|
||||||
Parent.prototype.createContainer.call(this, options);
|
|
||||||
};
|
|
||||||
*/
|
|
||||||
return Level;
|
return Level;
|
||||||
});
|
});
|
||||||
|
|
@ -74,36 +74,25 @@ function (Parent, Settings, Nc) {
|
||||||
|
|
||||||
var callback = function(mesh) {
|
var callback = function(mesh) {
|
||||||
Nc.trigger(Nc.ns.client.view.mesh.add, options.layerId, mesh);
|
Nc.trigger(Nc.ns.client.view.mesh.add, options.layerId, mesh);
|
||||||
|
Nc.trigger(Nc.ns.client.view.mesh.update, options.layerId, mesh, {
|
||||||
|
x: Settings.STAGE_WIDTH / 2,
|
||||||
|
y: Settings.STAGE_HEIGHT / 2,
|
||||||
|
pivot: {
|
||||||
|
x: mesh.texture.width / 2,
|
||||||
|
y: mesh.texture.height / 2
|
||||||
|
}
|
||||||
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Nc.trigger(Nc.ns.client.view.mesh.create,
|
Nc.trigger(Nc.ns.client.view.mesh.create,
|
||||||
options.layerId,
|
options.layerId,
|
||||||
texturePath,
|
texturePath,
|
||||||
callback,
|
callback
|
||||||
{
|
|
||||||
x: 200
|
|
||||||
}
|
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
};
|
};
|
||||||
|
|
||||||
TiledLevel.prototype.addBackground = function(options) {
|
|
||||||
var texturePath = Settings.GRAPHICS_PATH + options.image;
|
|
||||||
|
|
||||||
/*
|
|
||||||
var callback = function (mesh) {
|
|
||||||
Nc.trigger(Nc.ns.client.view.mesh.add, mesh, 0); // FIXME: add at z layer -1 or so
|
|
||||||
}
|
|
||||||
Nc.trigger(Nc.ns.client.view.mesh.create, texturePath, callback, {
|
|
||||||
width: 4000,
|
|
||||||
height: 2959,
|
|
||||||
x: -(4000 - Settings.STAGE_WIDTH) / 2,
|
|
||||||
y: -(2959 + Settings.STAGE_HEIGHT + 700) / 2
|
|
||||||
});
|
|
||||||
*/
|
|
||||||
}
|
|
||||||
|
|
||||||
TiledLevel.prototype.getLayer = function(levelData, name) {
|
TiledLevel.prototype.getLayer = function(levelData, name) {
|
||||||
for (var i = 0; i < levelData.layers.length; i++) {
|
for (var i = 0; i < levelData.layers.length; i++) {
|
||||||
if(levelData.layers[i].name === name) {
|
if(levelData.layers[i].name === name) {
|
||||||
|
|
|
||||||
|
|
@ -53,8 +53,6 @@ function (Nc, Exception, Layer) {
|
||||||
this.layers.splice(layerIndex, 0, layer);
|
this.layers.splice(layerIndex, 0, layer);
|
||||||
|
|
||||||
this.rearrangeLayers();
|
this.rearrangeLayers();
|
||||||
|
|
||||||
console.log(this.layers.map(function(o) {return o.name}))
|
|
||||||
};
|
};
|
||||||
|
|
||||||
LayerManager.prototype.rearrangeLayers = function() {
|
LayerManager.prototype.rearrangeLayers = function() {
|
||||||
|
|
|
||||||
|
|
@ -56,7 +56,7 @@ define([
|
||||||
}
|
}
|
||||||
|
|
||||||
var spawnpointsFound = false,
|
var spawnpointsFound = false,
|
||||||
lastLayerId;
|
lastLayerId = null;
|
||||||
|
|
||||||
// from spawnpoints to background
|
// from spawnpoints to background
|
||||||
for (var i = levelData.layers.length - 1; i >= 0; i--) {
|
for (var i = levelData.layers.length - 1; i >= 0; i--) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue