Token导航 LogoToken导航TokenDH.com
研究检索需要联网github未标认证来源可访问许可证需确认审计通过

game-design游戏设计

Agent Skill

用于辅助界面设计、视觉规范、排版、配色、布局和交互体验优化。它适合让 Agent 根据产品场景整理页面结构、生成 UI 方案、检查视觉一致性或改进组件层级。使用时需要结合现有品牌、设计系统和用户任务,不应只堆装饰元素;涉及真实页面改动时,应通过截图或浏览器预览检查文本溢出、对齐和响应式表现。

总安装

612

周安装

25

GitHub Stars

13

下载量

196
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:game-design(游戏设计)
来源仓库:https://github.com/dcl-regenesislabs/opendcl
仓库路径:skills/game-design
安装命令:
npx skills add https://github.com/dcl-regenesislabs/opendcl --skill game-design
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/dcl-regenesislabs/opendcl --skill game-design

简介

game-design 阐述去中心化游戏设计的核心原则,强调即时体验、自然循环和无强制终止机制。

  • 适合在设计持续在线的共享世界项目时遵循玩家自由进出、无启动界面和抗中断架构规范。
  • 提供场景优化指南,包括资源加载策略、LOD 控制和网络同步机制建议以确保流畅体验。
  • 禁止尝试移除玩家或强制结束会话,所有交互应围绕自愿参与和异步进度保存展开。
  • 适用宿主包括 Codex、Claude、Cursor、Gemini CLI,接入前应确认版本、权限和运行环境要求。

SKILL.md

Decentraland Game Design & Scene Optimization

1. DCL Game Design Philosophy

Decentraland is a continuous, shared 3D world. Design around these constraints:

  • No startup screen: The scene is always live. Players walk in from adjacent parcels — there is no splash screen, no "press start." Your scene must be meaningful the instant a player arrives.
  • No forced endings: You cannot force a "game over" state. Players can leave at any time by walking away or teleporting. Design loops that accommodate drop-in / drop-out naturally.
  • Cannot remove players: There is no API to eject a player from a scene. You can teleport a player, but only with their consent (they must accept the prompt). Design around misbehaving players with game mechanics, not eviction.
  • Boundary awareness: Players standing outside your parcel can see into it. Your scene is always on display. Neighboring scenes are visible too — consider visual harmony.
  • Shared space: Multiple players are always potentially present. Even a "single-player" puzzle is witnessed by others. Embrace or account for this.

2. Scene Limitation Formulas

All limits scale with parcel count n. Know these formulas and design within them.

ResourceFormula1 parcel2 parcels4 parcels9 parcels16 parcels
Trianglesn x 10,00010,00020,00040,00090,000160,000
Entitiesn x 2002004008001,8003,200
Physics bodiesn x 3003006001,2002,7004,800
Materialslog2(n+1) x 202031466681
Textureslog2(n+1) x 101015233340
Height limitlog2(n+1) x 20m20m31m46m66m81m
Draw callsn x 300 (target)3006001,2002,7004,800

File limits: 15 MB per parcel, 300 MB max total, 200 files per parcel, 50 MB max per individual file.

3. Texture Requirements

  • Dimensions must be power-of-two: 256, 512, 1024, 2048
  • Recommended sizes: 1024x1024 for scene objects, 512x512 for wearables
  • Avoid textures over 2048x2048 — they consume excessive memory and often exceed limits
  • Use texture atlases to combine multiple small textures into one, reducing draw calls and material count
  • Prefer compressed formats (WebP) over raw PNG where possible
  • Share texture references across materials — do not duplicate texture files

4. Asset Preloading (AssetLoad Component)

For large assets that would cause visible pop-in, use AssetLoad to pre-download before rendering:

import { engine, AssetLoad, LoadingState, GltfContainer, Transform } from '@dcl/sdk/ecs'
import { Vector3 } from '@dcl/sdk/math'

const preloadEntity = engine.addEntity()
AssetLoad.create(preloadEntity, { src: 'models/large-model.glb' })

function assetLoadingSystem(dt: number) {
  for (const [entity] of engine.getEntitiesWith(AssetLoad)) {
    const state = AssetLoad.get(entity)
    if (state.loadingState === LoadingState.FINISHED) {
      GltfContainer.create(entity, { src: 'models/large-model.glb' })
      Transform.create(entity, { position: Vector3.create(8, 0, 8) })
      AssetLoad.deleteFrom(entity)
    }
  }
}
engine.addSystem(assetLoadingSystem)

Use this pattern for any model over ~1 MB or for assets that should be ready before a game phase begins.

5. Performance Patterns

Object Pooling

Reuse entities instead of creating and destroying them:

const pool: Entity[] = []

function getFromPool(): Entity {
  const existing = pool.pop()
  if (existing) return existing
  return engine.addEntity()
}

function returnToPool(entity: Entity) {
  Transform.getMutable(entity).position = Vector3.create(0, -100, 0)
  pool.push(entity)
}

LOD (Level of Detail)

Swap models or hide entities based on distance from the player:

function lodSystem() {
  const playerPos = Transform.get(engine.PlayerEntity).position
  for (const [entity, transform] of engine.getEntitiesWith(Transform, GltfContainer)) {
    const distance = Vector3.distance(playerPos, transform.position)
    VisibilityComponent.createOrReplace(entity, { visible: distance <= 30 })
  }
}
engine.addSystem(lodSystem)

Draw Call Reduction

  • Merge meshes in Blender before export
  • Use texture atlases (one material for many objects)
  • Limit unique materials — reuse them across entities
  • Avoid transparency when possible (transparent objects cost extra draw calls)

System Optimization

  • Do NOT run heavy logic every frame. Use timers: let timer = 0 function heavySystem(dt: number) {timer += dt if (timer < 0.5) return // Run every 500ms, not every frame timer = 0 //... expensive work here}
  • Minimize engine.getEntitiesWith() queries — cache results when entity sets are stable
  • Avoid allocating new objects (Vector3.create, arrays) inside systems that run every frame

Disable Unused Colliders

Remove collision meshes from decorative objects that players never interact with. This reduces physics body count significantly.

6. Input System Design

InputActionNotes
E keyPrimary action (IA_PRIMARY)Main interaction
F keySecondary action (IA_SECONDARY)Alternate interaction
Pointer clickIA_POINTERLeft mouse click / tap
Keys 1-4IA_ACTION_3 through IA_ACTION_6Action bar slots

Design Considerations

  • Mouse wheel is not available as an input
  • Always design for both desktop and mobile. Mobile has no keyboard — rely on pointer and on-screen buttons
  • Set maxDistance on pointer events (8-10 meters typical) to prevent interactions from across the scene
  • Use hoverText to communicate what an interaction does before the player commits

7. State Management Patterns

Module-Level State (Simple Games)

// game-state.ts
export let score = 0
export let gamePhase: 'waiting' | 'playing' | 'ended' = 'waiting'
export function addScore(points: number) { score += points }

Component-Based State (Complex Games)

Use custom components as structured data containers:

import { engine, Schemas } from '@dcl/sdk/ecs'

const EnemyState = engine.defineComponent('EnemyState', {
  health: Schemas.Number,
  speed: Schemas.Number,
  target: Schemas.Entity
})

State Machines

Model game phases as explicit states with clear transitions:

type GameState = 'lobby' | 'countdown' | 'active' | 'cooldown'
let currentState: GameState = 'lobby'

function gameStateSystem(dt: number) {
  switch (currentState) {
    case 'lobby': handleLobby(dt); break
    case 'countdown': handleCountdown(dt); break
    case 'active': handleActive(dt); break
    case 'cooldown': handleCooldown(dt); break
  }
}

8. UX/UI Guidelines

  • Keep UI minimal: The metaverse is about 3D presence, not 2D overlays. Avoid large HUDs that obscure the world.
  • Prefer spatial UI: Use TextShape on entities and 3D signs over screen-space UI whenever the information is tied to a place or object.
  • Clear affordances: Interactive objects should look interactive. Use glow effects, outlines, floating indicators, or subtle animations to signal "you can click this."
  • Sound feedback: Every significant player action should produce audio feedback. It confirms the action registered and adds polish.
  • Progressive disclosure: Do not dump all information at once. Reveal mechanics and story as the player engages. Start simple, layer complexity.
  • Immediate feedback: When a player interacts, respond within the same frame. Use tweens, sounds, or UI popups so the player never wonders "did that work?"
  • Accessibility: Use high-contrast text, readable font sizes (fontSize >= 16 for screen UI), and audio cues alongside visual ones.

9. MVP Planning

Start with the Core Loop

Ask: What does the player DO? The answer should be a single sentence:

  • "The player explores rooms and finds hidden objects."
  • "The player races other players through an obstacle course."
  • "The player collects resources and builds structures."

Prototype Fast

  • Build in 1-2 parcels first, even if the final scene will be larger
  • Use primitive shapes (boxes, spheres) as placeholders — do not wait for final art
  • Get the core loop working before adding any secondary features

Test Early

  • Deploy to a test world and walk through it yourself
  • Invite 2-3 real players and watch them (do not explain the game — see if it is self-explanatory)
  • Measure: Do players understand what to do within 30 seconds?

Iterate on Fun

  • Polish comes last. If the core loop is not fun with placeholder art, better art will not fix it
  • Cut features aggressively. A tight, small experience beats a sprawling, unfinished one
  • Replay value matters more than content volume in DCL (players return to scenes they enjoy)

MVP Checklist

  • Core loop is playable in under 60 seconds
  • Works with 1 player and with 5+ players simultaneously
  • Fits within scene limits for target parcel count
  • Has clear visual/audio feedback for all interactions
  • Player understands the goal without external instructions
Starting from scratch? See the create-scene skill first to scaffold the project before designing the game.

10. Cross-References

TopicSkillWhen to Use
Interactivity, input handling, raycastingadd-interactivityImplementing click handlers, triggers, input
Multiplayer sync, server communicationmultiplayer-syncNetworked game state, real-time sync
Screen UI, React-ECS, HUD elementsbuild-uiBuilding menus, scoreboards, dialogs
Performance optimization, entity/triangle budgetsoptimize-sceneDetailed optimization techniques

This skill focuses on the design decisions and optimization constraints that shape implementations. For detailed code patterns, see the referenced skills.

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

33.16%
按下载量换算65

Claude

31.93%
按下载量换算63

Cursor

18%
按下载量换算35

Gemini CLI

9.94%
按下载量换算19

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

需要联网

该 Skill 可能需要联网访问来源站点、仓库或外部 API;具体网络访问范围需要结合源码和 README 复核。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills