novo
This commit is contained in:
@@ -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!
|
||||
Reference in New Issue
Block a user