pc-games

Solid

PC and console game development principles. Engine selection, platform features, optimization strategies.

Web & Frontend 27,681 stars 2854 forks Updated today MIT

Install

View on GitHub

Quality Score: 96/100

Stars 20%
100
Recency 20%
100
Frontmatter 20%
70
Documentation 15%
100
Issue Health 10%
50
License 10%
100
Description 5%
100

Skill Content

# PC/Console Game Development > Engine selection and platform-specific principles. --- ## 1. Engine Selection ### Decision Tree ``` What are you building? │ ├── 2D Game │ ├── Open source important? → Godot │ └── Large team/assets? → Unity │ ├── 3D Game │ ├── AAA visual quality? → Unreal │ ├── Cross-platform priority? → Unity │ └── Indie/open source? → Godot 4 │ └── Specific Needs ├── DOTS performance? → Unity ├── Nanite/Lumen? → Unreal └── Lightweight? → Godot ``` ### Comparison | Factor | Unity 6 | Godot 4 | Unreal 5 | |--------|---------|---------|----------| | 2D | Good | Excellent | Limited | | 3D | Good | Good | Excellent | | Learning | Medium | Easy | Hard | | Cost | Revenue share | Free | 5% after $1M | | Team | Any | Solo-Medium | Medium-Large | --- ## 2. Platform Features ### Steam Integration | Feature | Purpose | |---------|---------| | Achievements | Player goals | | Cloud Saves | Cross-device progress | | Leaderboards | Competition | | Workshop | User mods | | Rich Presence | Show in-game status | ### Console Requirements | Platform | Certification | |----------|--------------| | PlayStation | TRC compliance | | Xbox | XR compliance | | Nintendo | Lotcheck | --- ## 3. Controller Support ### Input Abstraction ``` Map ACTIONS, not buttons: - "confirm" → A (Xbox), Cross (PS), B (Nintendo) - "cancel" → B (Xbox), Circle (PS), A (Nintendo) ``` ### Haptic Feedback | Intensity | Use | |-----------|-----| | Light | UI feedback | | ...

Details

Author
davila7
Repository
davila7/claude-code-templates
Created
11 months ago
Last Updated
today
Language
Python
License
MIT

Integrates with

Similar Skills

Semantically similar based on skill content — not just same category