This commit is contained in:
2025-12-11 11:34:23 +01:00
parent b46c5dca6b
commit 45529ab8a7
220 changed files with 17696 additions and 0 deletions

View File

@@ -0,0 +1,49 @@
# 🚨 TOTAL PROJECT RESET PLAN
**Fresh Start - Kompletno zbriši vse**
---
## ⚠️ **CURRENTLY:**
- Old code še vedno teče
- Cache issues
-混合 old/new assets
## ✅ **SOLUTION: TOTAL RESET**
### **STEP 1: Full Backup**
```powershell
# Backup CELEGA projekta
Copy-Item "c:\novafarma" -Destination "c:\novafarma_BACKUP_FINAL" -Recurse
```
### **STEP 2: Delete Everything (Razen .git)**
```powershell
# Izbrisi VSE razen .git
Remove-Item "c:\novafarma\*" -Exclude ".git" -Recurse -Force
```
### **STEP 3: Fresh Start**
Create minimal structure:
```
novafarma/
├── index.html (NEW)
├── assets/ (PRAZNO)
├── src/
│ ├── scenes/
│ │ └── PreloadScene.js (MINIMAL)
│ └── systems/ (PRAZNO)
└── package.json (MINIMAL)
```
### **STEP 4: Generate Assets ONE BY ONE**
1. Tiles first (grass, water)
2. Player sprite
3. Test
4. Add more...
---
**Ali naj začnem? (Y/N)**
**WARNING:** Bo izbrisalo VSE razen .git!
**Backup:** se bo naredil pred brisanjem!