데이터 파이프라인 프로토타입 완성

This commit is contained in:
2026-01-22 17:19:24 +09:00
parent 6a94377c3a
commit 24e362a0ad
8 changed files with 70 additions and 7 deletions

8
Assets/Data.meta Normal file
View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: b44ae063e1d62ca429aecf2473a924bb
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 3796845bfdc3e934298a4c264cff99f5
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

8
Assets/Data/Scripts.meta Normal file
View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: a3eff83423ac8c448bf5fe1cd57a8bf4
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: c6c855e71b7348b43b490131e1547186
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

8
Assets/Packages.meta Normal file
View File

@@ -0,0 +1,8 @@
fileFormatVersion: 2
guid: 387d454e042dcd84093ec37576c091db
folderAsset: yes
DefaultImporter:
externalObjects: {}
userData:
assetBundleName:
assetBundleVariant:

2
Assets/packages.config Normal file
View File

@@ -0,0 +1,2 @@
<?xml version="1.0" encoding="utf-8"?>
<packages />

View File

@@ -0,0 +1,28 @@
fileFormatVersion: 2
guid: dbe8038bd17b06847931aace2c1b1c7c
labels:
- NuGetForUnity
PluginImporter:
externalObjects: {}
serializedVersion: 3
iconMap: {}
executionOrder: {}
defineConstraints: []
isPreloaded: 0
isOverridable: 0
isExplicitlyReferenced: 0
validateReferences: 1
platformData:
Any:
enabled: 0
settings: {}
Editor:
enabled: 0
settings:
DefaultValueInitialized: true
WindowsStoreApps:
enabled: 0
settings: {}
userData:
assetBundleName:
assetBundleVariant:

View File

@@ -21,13 +21,6 @@ try {
Write-Host ""
Write-Host "Installed hooks:" -ForegroundColor Cyan
Write-Host " - pre-commit: XLSX 데이터 검증" -ForegroundColor White
Write-Host " - post-commit: ScriptableObject 자동 생성" -ForegroundColor White
Write-Host ""
Write-Host "💡 사용법:" -ForegroundColor Cyan
Write-Host " 1. Excel에서 데이터 수정" -ForegroundColor White
Write-Host " 2. git add GameData/Towers.xlsx" -ForegroundColor White
Write-Host " 3. git commit -m 'Update data'" -ForegroundColor White
Write-Host " → 자동으로 검증 및 SO 생성" -ForegroundColor Gray
}
catch {
Write-Host "❌ Hook 파일 복사 실패: $_" -ForegroundColor Red