27 lines
844 B (Stored with Git LFS)
Markdown
27 lines
844 B (Stored with Git LFS)
Markdown
# Contents - Broadcast Content Scripts
|
|
|
|
Broadcasting content scripts organized by feature.
|
|
|
|
## Folder Structure
|
|
|
|
```
|
|
Assets/Scripts/Contents/
|
|
├── README.md
|
|
├── BossRaid/ # 보스 토벌 (고전 RPG 스타일 전투)
|
|
├── Roulette/ # 룰렛 시스템
|
|
├── Vote/ # 시청자 투표
|
|
├── MiniGame/ # 미니게임
|
|
├── Quiz/ # 퀴즈
|
|
├── Donation/ # 도네이션 이벤트 연출
|
|
├── Timer/ # 타이머/카운트다운
|
|
└── ... (add more as needed)
|
|
```
|
|
|
|
## Conventions
|
|
|
|
- Folder names: **English**, PascalCase
|
|
- One folder per feature/content type
|
|
- Each folder contains its own scripts, editor scripts, and data
|
|
- Scripts should be self-contained per feature where possible
|
|
- Namespace: `Streamingle.Contents.<FeatureName>`
|