conditions_better
parent
81d847aae1
commit
db0fffc829
|
@ -66,9 +66,9 @@ import Layout from '../../layouts/Layout.astro';
|
||||||
.then(response => response.json())
|
.then(response => response.json())
|
||||||
.then(({ data }) => {
|
.then(({ data }) => {
|
||||||
const screenCenterX = this.cameras.main.worldView.x + this.cameras.main.width / 2;
|
const screenCenterX = this.cameras.main.worldView.x + this.cameras.main.width / 2;
|
||||||
const baseFontSize = 60;
|
const baseFontSize = 40;
|
||||||
const responsiveFontSize = (window.innerWidth / 950) * baseFontSize;
|
const responsiveFontSize = (window.innerWidth / 950) * baseFontSize;
|
||||||
const descrptText = this.add.text(screenCenterX, 20, data.description, {
|
const descrptText = this.add.text(screenCenterX, 50, data.description, {
|
||||||
font: `${responsiveFontSize}px quicksand`,
|
font: `${responsiveFontSize}px quicksand`,
|
||||||
fill: '#7c4c23',
|
fill: '#7c4c23',
|
||||||
}).setOrigin(0.5);
|
}).setOrigin(0.5);
|
||||||
|
@ -243,10 +243,8 @@ import Layout from '../../layouts/Layout.astro';
|
||||||
};
|
};
|
||||||
const cursorSize = brushSize * cursorSizeMultiplier;
|
const cursorSize = brushSize * cursorSizeMultiplier;
|
||||||
customCursor.clear(); // Clear the previous frame
|
customCursor.clear(); // Clear the previous frame
|
||||||
customCursor.fillStyle(Phaser.Display.Color.HexStringToColor(selectedColor).color); // Use the selected drawing color
|
customCursor.lineStyle(3, 0x000000); // Set the line style (2 is the line thickness, 0x000000 is black color)
|
||||||
// customCursor.setStrokeStyle(0xff0000); // Color of the cursor outline
|
customCursor.strokeCircle(0, 0, cursorSize);
|
||||||
customCursor.fillCircle(0, 0, cursorSize);
|
|
||||||
|
|
||||||
// Position the cursor at the current mouse pointer coordinates
|
// Position the cursor at the current mouse pointer coordinates
|
||||||
customCursor.x = this.input.x;
|
customCursor.x = this.input.x;
|
||||||
customCursor.y = this.input.y;
|
customCursor.y = this.input.y;
|
||||||
|
|
Loading…
Reference in New Issue