Update GrassScene: S1 Max Logic, Infinite Grass mode, new assets (visoka_trava_v2), physics enabled. Time: 15:15

This commit is contained in:
2026-01-26 15:15:38 +01:00
parent d8f24f9588
commit 3b0c26fa5a
11 changed files with 367 additions and 102 deletions

28
index.html Normal file
View File

@@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="sl">
<head>
<meta charset="UTF-8">
<title>Nova Farma - Clean Start</title>
<style>
body {
margin: 0;
background: #000;
overflow: hidden;
}
canvas {
display: block;
image-rendering: unique; /* or pixelated */
}
</style>
</head>
<body>
<!-- Phaser Library -->
<script src="node_modules/phaser/dist/phaser.js"></script>
<!-- Game Entry -->
<script type="module" src="src/game.js"></script>
</body>
</html>