Move ONSControls assets

This commit is contained in:
OleSTEEP 2024-03-02 16:40:53 +03:00
parent 45a9bbf14d
commit fcf7301dce
20 changed files with 16 additions and 16 deletions

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 666 B

After

Width:  |  Height:  |  Size: 666 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 684 B

After

Width:  |  Height:  |  Size: 684 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 343 B

After

Width:  |  Height:  |  Size: 343 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 402 B

After

Width:  |  Height:  |  Size: 402 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

@ -35,10 +35,10 @@ ONSControls.createCanvas = function() {
ONSControls.createButtons = function() { ONSControls.createButtons = function() {
const container = new PIXI.Container(); const container = new PIXI.Container();
const buttons = [ const buttons = [
new PIXI.Sprite.fromImage("js/porting/assets/omori_a_button.png"), new PIXI.Sprite.fromImage("img/system/controls/omori_a_button.png"),
new PIXI.Sprite.fromImage("js/porting/assets/omori_x_button.png"), new PIXI.Sprite.fromImage("img/system/controls/omori_x_button.png"),
new PIXI.Sprite.fromImage("js/porting/assets/omori_b_button.png"), new PIXI.Sprite.fromImage("img/system/controls/omori_b_button.png"),
new PIXI.Sprite.fromImage("js/porting/assets/omori_y_button.png") new PIXI.Sprite.fromImage("img/system/controls/omori_y_button.png")
] ]
for (btn of buttons) { for (btn of buttons) {
btn.anchor.set(0.5); btn.anchor.set(0.5);
@ -52,7 +52,7 @@ ONSControls.createButtons = function() {
// * DPad Buttons // * DPad Buttons
//============================================================================= //=============================================================================
ONSControls.createDPad = function() { ONSControls.createDPad = function() {
const container = new PIXI.Sprite.fromImage("js/porting/assets/omori_dpad.png"); const container = new PIXI.Sprite.fromImage("img/system/controls/omori_dpad.png");
container.anchor.set(0.5); container.anchor.set(0.5);
container.interactive = true; container.interactive = true;
container.pressed = false; container.pressed = false;
@ -97,8 +97,8 @@ ONSControls.createDPad = function() {
// * LB/RB Buttons // * LB/RB Buttons
//============================================================================= //=============================================================================
ONSControls.createBumpers = function() { ONSControls.createBumpers = function() {
const LBsprite = new PIXI.Sprite.fromImage("js/porting/assets/omori_lb_button.png"); const LBsprite = new PIXI.Sprite.fromImage("img/system/controls/omori_lb_button.png");
const RBsprite = new PIXI.Sprite.fromImage("js/porting/assets/omori_rb_button.png"); const RBsprite = new PIXI.Sprite.fromImage("img/system/controls/omori_rb_button.png");
LBsprite.anchor.set(0.5); LBsprite.anchor.set(0.5);
LBsprite.interactive = true; LBsprite.interactive = true;
RBsprite.anchor.set(0.5); RBsprite.anchor.set(0.5);
@ -112,7 +112,7 @@ ONSControls.createBumpers = function() {
// * Show Button // * Show Button
//============================================================================= //=============================================================================
ONSControls.createAdditionalButtons = function() { ONSControls.createAdditionalButtons = function() {
const showButton = new PIXI.Sprite.fromImage("js/porting/assets/omori_show_button.png"); const showButton = new PIXI.Sprite.fromImage("img/system/controls/omori_show_button.png");
showButton.anchor.set(0.5); showButton.anchor.set(0.5);
showButton.interactive = true; showButton.interactive = true;
this._controlsCanvas.stage.addChild(showButton); this._controlsCanvas.stage.addChild(showButton);

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 2.6 KiB

After

Width:  |  Height:  |  Size: 2.6 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 666 B

After

Width:  |  Height:  |  Size: 666 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 684 B

After

Width:  |  Height:  |  Size: 684 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 343 B

After

Width:  |  Height:  |  Size: 343 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 402 B

After

Width:  |  Height:  |  Size: 402 B

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.2 KiB

After

Width:  |  Height:  |  Size: 1.2 KiB

Before After
Before After

View file

Before

Width:  |  Height:  |  Size: 1.1 KiB

After

Width:  |  Height:  |  Size: 1.1 KiB

Before After
Before After

View file

@ -35,10 +35,10 @@ ONSControls.createCanvas = function() {
ONSControls.createButtons = function() { ONSControls.createButtons = function() {
const container = new PIXI.Container(); const container = new PIXI.Container();
const buttons = [ const buttons = [
new PIXI.Sprite.fromImage("js/porting/assets/omori_a_button.png"), new PIXI.Sprite.fromImage("img/system/controls/omori_a_button.png"),
new PIXI.Sprite.fromImage("js/porting/assets/omori_x_button.png"), new PIXI.Sprite.fromImage("img/system/controls/omori_x_button.png"),
new PIXI.Sprite.fromImage("js/porting/assets/omori_b_button.png"), new PIXI.Sprite.fromImage("img/system/controls/omori_b_button.png"),
new PIXI.Sprite.fromImage("js/porting/assets/omori_y_button.png") new PIXI.Sprite.fromImage("img/system/controls/omori_y_button.png")
] ]
for (btn of buttons) { for (btn of buttons) {
btn.anchor.set(0.5); btn.anchor.set(0.5);
@ -52,7 +52,7 @@ ONSControls.createButtons = function() {
// * DPad Buttons // * DPad Buttons
//============================================================================= //=============================================================================
ONSControls.createDPad = function() { ONSControls.createDPad = function() {
const container = new PIXI.Sprite.fromImage("js/porting/assets/omori_dpad.png"); const container = new PIXI.Sprite.fromImage("img/system/controls/omori_dpad.png");
container.anchor.set(0.5); container.anchor.set(0.5);
container.interactive = true; container.interactive = true;
container.pressed = false; container.pressed = false;
@ -97,8 +97,8 @@ ONSControls.createDPad = function() {
// * LB/RB Buttons // * LB/RB Buttons
//============================================================================= //=============================================================================
ONSControls.createBumpers = function() { ONSControls.createBumpers = function() {
const LBsprite = new PIXI.Sprite.fromImage("js/porting/assets/omori_lb_button.png"); const LBsprite = new PIXI.Sprite.fromImage("img/system/controls/omori_lb_button.png");
const RBsprite = new PIXI.Sprite.fromImage("js/porting/assets/omori_rb_button.png"); const RBsprite = new PIXI.Sprite.fromImage("img/system/controls/omori_rb_button.png");
LBsprite.anchor.set(0.5); LBsprite.anchor.set(0.5);
LBsprite.interactive = true; LBsprite.interactive = true;
RBsprite.anchor.set(0.5); RBsprite.anchor.set(0.5);
@ -112,7 +112,7 @@ ONSControls.createBumpers = function() {
// * Show Button // * Show Button
//============================================================================= //=============================================================================
ONSControls.createAdditionalButtons = function() { ONSControls.createAdditionalButtons = function() {
const showButton = new PIXI.Sprite.fromImage("js/porting/assets/omori_show_button.png"); const showButton = new PIXI.Sprite.fromImage("img/system/controls/omori_show_button.png");
showButton.anchor.set(0.5); showButton.anchor.set(0.5);
showButton.interactive = true; showButton.interactive = true;
this._controlsCanvas.stage.addChild(showButton); this._controlsCanvas.stage.addChild(showButton);