star-sdk-cli 0.1.6 → 0.1.8
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cli.mjs +2 -3
- package/package.json +1 -1
package/dist/cli.mjs
CHANGED
|
@@ -8,12 +8,12 @@ import * as os from "os";
|
|
|
8
8
|
// src/skills.ts
|
|
9
9
|
var SKILL_CONTENT = `---
|
|
10
10
|
name: star-sdk
|
|
11
|
-
description: Use when you need a game that works on mobile without audio issues, has leaderboards without building a backend, or needs
|
|
11
|
+
description: Use when you need a game that works on mobile without audio issues, has leaderboards without building a backend, or needs canvas rendering without DPR/sizing bugs. Handles iOS Safari audio unlocking, DPR scaling, and coordinate conversion automatically.
|
|
12
12
|
---
|
|
13
13
|
|
|
14
14
|
# Star SDK
|
|
15
15
|
|
|
16
|
-
Browser game development SDK with audio, canvas,
|
|
16
|
+
Browser game development SDK with audio, canvas, and leaderboards.
|
|
17
17
|
|
|
18
18
|
## Import
|
|
19
19
|
|
|
@@ -30,7 +30,6 @@ import Star from 'star-sdk';
|
|
|
30
30
|
| \`Star.game()\` | Game loop, canvas, UI, input | [canvas.md](./canvas.md) |
|
|
31
31
|
| \`Star.audio\` | Sound effects, music | [audio.md](./audio.md) |
|
|
32
32
|
| \`Star.leaderboard\` | Scores, rankings | [leaderboard.md](./leaderboard.md) |
|
|
33
|
-
| \`Star.multiplayer\` | Real-time multiplayer | [multiplayer.md](./multiplayer.md) |
|
|
34
33
|
|
|
35
34
|
## Quick Start
|
|
36
35
|
|