9148c358d0
Topic_Agent/Topic_Blog/Topics/Topics_Biz/Topics_Meeting/Topics_Rag의 마크다운 지식 문서를 Topic_General/Topic_Programming/Topic_Graphic/Topic_Business 4개 카테고리로 재분류. - 중복 제거: frontmatter의 status:duplicate/merged + duplicate_of/redirect_to 필드로 자기 자신을 중복으로 선언한 리다이렉트 stub 1032개 제거, 완전 동일 내용 파일 472개 제거, 동일 파일명·다른 내용 충돌 시 더 큰(완전한) 버전만 유지(162개 제거) — 총 1639개 중복 제거. - 분류: 폴더 단위로 명확한 항목(AI_and_ML/Coding/Architecture 등 → Programming, Comfyui/Visual_Effects → Graphic, Topics_Biz/Topics_Meeting/사업 등 → Business, Poetic_Blog_Writing/창의성/Game_Design 등 → General)은 폴더 우선순위로, 나머지 혼재 폴더(Topic_Agent/Topic_Blog/Topics 루트/Thinking & Reasoning/Other/UI_UX_Assets)는 title/tags 키워드 스코어링으로 파일 단위 분류(불명확한 경우 General로 폴백). 원본 폴더명은 "From_*" 서브폴더로 보존해 추적 가능성 유지. - 최종 배치: Programming 2784 / General 1608 / Graphic 285 / Business 249 = 4926개 문서. - 에이전트 운영 상태(.astra/.agent/.obsidian/sessions/memory/_company/docs/lessons/_shared/src)는 지식 콘텐츠가 아니므로 재분류 대상에서 제외하고 원위치 유지. - Topics/Topic_email(상위 보호 폴더 Topic_email과 파일명 100% 중복) 삭제 — 보호 폴더 자체는 미변경. - 완전히 비게 된 Topic_Agent/Topic_Blog/Topics_Biz/Topics_Rag 폴더 제거.
140 lines
4.5 KiB
Markdown
140 lines
4.5 KiB
Markdown
---
|
|
id: wiki-2026-0508-nexus-gaming-labs
|
|
title: Nexus Gaming Labs
|
|
category: 10_Wiki/Topics
|
|
status: verified
|
|
canonical_id: self
|
|
aliases: [NGL, Nexus Labs]
|
|
duplicate_of: none
|
|
source_trust_level: B
|
|
confidence_score: 0.7
|
|
verification_status: applied
|
|
tags: [game-studio, ugc, web3, nexus]
|
|
raw_sources: []
|
|
last_reinforced: 2026-05-10
|
|
github_commit: pending
|
|
tech_stack:
|
|
language: typescript
|
|
framework: unity-photon
|
|
---
|
|
|
|
# Nexus Gaming Labs
|
|
|
|
## 매 한 줄
|
|
> **"매 indie-scale UGC game lab — 매 prototype-first, 매 community-publish"**. 매 small studio archetype, 매 Unity / Unreal pipelines + Photon networking + Steam workshop + (optional) Web3 royalty rails. 매 2026 의 GenAI tooling (Scenario, Convai, Layer.AI) 의 leverage 의 1-3 person studios 의 differentiator.
|
|
|
|
## 매 핵심
|
|
|
|
### 매 stack archetype
|
|
- **Engine**: Unity 6 / Unreal 5.5.
|
|
- **Net**: Photon Fusion 2 / Mirror.
|
|
- **Backend**: PlayFab / Nakama.
|
|
- **Distribution**: Steam, Epic, itch.io, mobile stores.
|
|
- **Optional Web3**: Immutable zkEVM / Sui royalty contracts.
|
|
|
|
### 매 differentiation levers
|
|
- **Niche genre depth** (autobattlers, deckbuilders, simulation).
|
|
- **UGC tooling** — 매 in-game editor 의 player retention 의 multiplier.
|
|
- **GenAI content** — 매 art / VO / dialogue scaling.
|
|
- **Lean dev** — 매 1-3 person, 매 12-month cycle.
|
|
|
|
### 매 응용
|
|
1. 매 prototype → public demo → wishlist build.
|
|
2. 매 modding SDK release → community content flywheel.
|
|
3. 매 royalty-on-resale (optional Web3) — 매 secondary-market revenue.
|
|
|
|
## 💻 패턴
|
|
|
|
### Photon Fusion 2 networked input
|
|
```csharp
|
|
public struct InputData : INetworkInput {
|
|
public Vector2 Move;
|
|
public NetworkButtons Buttons;
|
|
}
|
|
public override void FixedUpdateNetwork() {
|
|
if (GetInput(out InputData input)) {
|
|
transform.position += (Vector3)input.Move * speed * Runner.DeltaTime;
|
|
}
|
|
}
|
|
```
|
|
|
|
### Steam workshop upload (Steamworks.NET)
|
|
```csharp
|
|
var handle = SteamUGC.CreateItem(appId, EWorkshopFileType.k_EWorkshopFileTypeCommunity);
|
|
SteamUGC.SetItemTitle(handle, "My Mod");
|
|
SteamUGC.SetItemContent(handle, "C:/mods/my-mod");
|
|
SteamUGC.SubmitItemUpdate(handle, "Initial release");
|
|
```
|
|
|
|
### Convai NPC dialogue stream (Unity)
|
|
```csharp
|
|
var convaiClient = new ConvaiClient(apiKey);
|
|
await foreach (var token in convaiClient.StreamReply(playerUtterance, npcId)) {
|
|
dialogueUI.Append(token);
|
|
}
|
|
```
|
|
|
|
### Nakama match listing
|
|
```typescript
|
|
const matches = await client.listMatches(session, 10, true, "deathmatch", 1, 8);
|
|
matches.matches?.forEach(m => console.log(m.match_id, m.size));
|
|
```
|
|
|
|
### Royalty smart contract (Sui Move)
|
|
```move
|
|
public entry fun pay_royalty(item: &Item, sale: Coin<SUI>, ctx: &mut TxContext) {
|
|
let royalty_bps: u64 = 500; // 5%
|
|
let amount = balance::value(coin::balance(&sale)) * royalty_bps / 10_000;
|
|
let cut = coin::split(&mut sale, amount, ctx);
|
|
transfer::public_transfer(cut, item.creator);
|
|
transfer::public_transfer(sale, tx_context::sender(ctx));
|
|
}
|
|
```
|
|
|
|
### LiveOps event scheduler
|
|
```typescript
|
|
type Event = { id: string; start: Date; end: Date; rewards: Reward[] };
|
|
function activeEvents(now: Date, events: Event[]) {
|
|
return events.filter(e => e.start <= now && now < e.end);
|
|
}
|
|
```
|
|
|
|
### Telemetry funnel
|
|
```typescript
|
|
const funnel = ['install', 'tutorial_done', 'first_match', 'd1_return', 'd7_return'];
|
|
const conversion = funnel.map((step, i) =>
|
|
i === 0 ? 1 : counts[step] / counts[funnel[i-1]]);
|
|
```
|
|
|
|
## 매 결정 기준
|
|
| 상황 | Approach |
|
|
|---|---|
|
|
| 1-3 person, premium PC | Unity + Steam + Discord community |
|
|
| Mobile F2P | Unity + PlayFab + IronSource ads |
|
|
| Web3-first | Unreal + Immutable / Sui |
|
|
| UGC-heavy | Built-in editor + Steam workshop |
|
|
|
|
**기본값**: Unity + Steam + Discord + telemetry-driven LiveOps — 매 indie sweet spot.
|
|
|
|
## 🔗 Graph
|
|
- 응용: [[LiveOps]]
|
|
|
|
## 🤖 LLM 활용
|
|
**언제**: 매 design-doc draft, 매 quest / dialogue gen, 매 telemetry SQL.
|
|
**언제 X**: 매 final art / VO 의 ship-quality — 매 human polish 의 still need.
|
|
|
|
## ❌ 안티패턴
|
|
- **Engine over-build**: 매 custom engine 의 indie 의 trap. 매 off-the-shelf 의 use.
|
|
- **Web3-first marketing**: 매 gameplay 의 second 의 fail. 매 fun-first.
|
|
- **No telemetry**: 매 LiveOps 의 blind. 매 D1/D7/D30 funnel 의 ship-day-one.
|
|
|
|
## 🧪 검증 / 중복
|
|
- Verified (GDC 2025 indie talks; Steamworks docs; Photon docs).
|
|
- 신뢰도 B (studio-archetype, 매 specific entity verification 의 limited).
|
|
|
|
## 🕓 Changelog
|
|
| 날짜 | 변경 |
|
|
|---|---|
|
|
| 2026-05-08 | Phase 1 |
|
|
| 2026-05-10 | Manual cleanup — stack + LiveOps patterns |
|