Character manager: asset uploads, per-ghost model/colour/opacity overrides, face+torso texture decals

This commit is contained in:
2026-07-24 14:47:36 +10:00
parent b6822af047
commit 5357c8464d
9 changed files with 642 additions and 39 deletions
+17
View File
@@ -0,0 +1,17 @@
@echo off
REM push-characters.bat - commit and push the character manager changes to Gitea.
REM Run from anywhere; it always works on K:\newbury-exhibit-v2
cd /d K:\newbury-exhibit-v2
if not exist .git (
echo No git repo here - initialising and linking to Gitea...
git init -b main
git remote add origin https://gitea.hideawaygaming.com.au/jessikitty/newbury-exhibit-v2.git
git fetch origin
git reset --soft origin/main
)
git add -A
git commit -m "Character manager: asset uploads, per-ghost model/colour/opacity overrides, face+torso texture decals"
git push origin main
pause