update welcome
2
src/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
/fonts/monogram*
|
|
||||||
/assets/
|
|
2
src/js/.gitignore
vendored
@ -1,2 +0,0 @@
|
|||||||
game.js*
|
|
||||||
engine.js
|
|
@ -33,10 +33,16 @@ export class App {
|
|||||||
this.scene = new Scene(this.canvas, this.context, w, h);
|
this.scene = new Scene(this.canvas, this.context, w, h);
|
||||||
this.prevTime = Date.now();
|
this.prevTime = Date.now();
|
||||||
|
|
||||||
|
const logStrings = [
|
||||||
|
'ujs engine',
|
||||||
|
`version: ${this.#version}`,
|
||||||
|
'feedback: iiiypuk {dog} fastmail.fm',
|
||||||
|
];
|
||||||
|
|
||||||
if (this.options.welcome) {
|
if (this.options.welcome) {
|
||||||
console.log('ujs engine');
|
logStrings.forEach((str) => {
|
||||||
console.log('version:', this.#version);
|
console.log(str);
|
||||||
console.log('feedback:', 'iiiypuk {dog} fastmail.fm');
|
});
|
||||||
}
|
}
|
||||||
|
|
||||||
Pointer.init();
|
Pointer.init();
|
||||||
|
3
test/.gitignore
vendored
Normal file
@ -0,0 +1,3 @@
|
|||||||
|
fonts/monogram*
|
||||||
|
assets/
|
||||||
|
js/game.js
|
Before Width: | Height: | Size: 15 KiB After Width: | Height: | Size: 15 KiB |
Before Width: | Height: | Size: 13 KiB After Width: | Height: | Size: 13 KiB |
Before Width: | Height: | Size: 43 KiB After Width: | Height: | Size: 43 KiB |
Before Width: | Height: | Size: 12 KiB After Width: | Height: | Size: 12 KiB |
Before Width: | Height: | Size: 766 B After Width: | Height: | Size: 766 B |
Before Width: | Height: | Size: 1.5 KiB After Width: | Height: | Size: 1.5 KiB |
1
test/js/engine.js
Symbolic link
@ -0,0 +1 @@
|
|||||||
|
../../dist/engine-beeeeeeta.js
|