uloop-cli 1.0.2 → 1.1.0
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.bundle.cjs +30 -2
- package/dist/cli.bundle.cjs.map +2 -2
- package/package.json +4 -4
- package/src/default-tools.json +29 -1
- package/src/version.ts +1 -1
package/dist/cli.bundle.cjs
CHANGED
|
@@ -5886,7 +5886,7 @@ var import_path4 = require("path");
|
|
|
5886
5886
|
|
|
5887
5887
|
// src/default-tools.json
|
|
5888
5888
|
var default_tools_default = {
|
|
5889
|
-
version: "1.0
|
|
5889
|
+
version: "1.1.0",
|
|
5890
5890
|
tools: [
|
|
5891
5891
|
{
|
|
5892
5892
|
name: "compile",
|
|
@@ -6417,6 +6417,34 @@ var default_tools_default = {
|
|
|
6417
6417
|
}
|
|
6418
6418
|
}
|
|
6419
6419
|
}
|
|
6420
|
+
},
|
|
6421
|
+
{
|
|
6422
|
+
name: "simulate-keyboard",
|
|
6423
|
+
description: "Simulate keyboard key input in PlayMode via Input System. Supports one-shot press, key-down hold, and key-up release for game controls (WASD, Space, etc.). Requires the Input System package (com.unity.inputsystem).",
|
|
6424
|
+
inputSchema: {
|
|
6425
|
+
type: "object",
|
|
6426
|
+
properties: {
|
|
6427
|
+
Action: {
|
|
6428
|
+
type: "string",
|
|
6429
|
+
description: "Keyboard action: Press - one-shot key tap (Down then Up), KeyDown - hold key down, KeyUp - release held key",
|
|
6430
|
+
enum: [
|
|
6431
|
+
"Press",
|
|
6432
|
+
"KeyDown",
|
|
6433
|
+
"KeyUp"
|
|
6434
|
+
],
|
|
6435
|
+
default: "Press"
|
|
6436
|
+
},
|
|
6437
|
+
Key: {
|
|
6438
|
+
type: "string",
|
|
6439
|
+
description: 'Key name matching Input System Key enum (e.g. "W", "Space", "LeftShift", "A", "Return"). Case-insensitive.'
|
|
6440
|
+
},
|
|
6441
|
+
Duration: {
|
|
6442
|
+
type: "number",
|
|
6443
|
+
description: "Hold duration in seconds for Press action (0 = one-shot tap). Ignored by KeyDown/KeyUp.",
|
|
6444
|
+
default: 0
|
|
6445
|
+
}
|
|
6446
|
+
}
|
|
6447
|
+
}
|
|
6420
6448
|
}
|
|
6421
6449
|
]
|
|
6422
6450
|
};
|
|
@@ -6486,7 +6514,7 @@ function getCachedServerVersion() {
|
|
|
6486
6514
|
}
|
|
6487
6515
|
|
|
6488
6516
|
// src/version.ts
|
|
6489
|
-
var VERSION = "1.0
|
|
6517
|
+
var VERSION = "1.1.0";
|
|
6490
6518
|
|
|
6491
6519
|
// src/spinner.ts
|
|
6492
6520
|
var SPINNER_FRAMES = ["\u280B", "\u2819", "\u2839", "\u2838", "\u283C", "\u2834", "\u2826", "\u2827", "\u2807", "\u280F"];
|