@combos-fun/plugin-renderer-event 0.1.7 → 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.
Files changed (2) hide show
  1. package/agent-skill.md +2 -0
  2. package/package.json +3 -3
package/agent-skill.md CHANGED
@@ -40,3 +40,5 @@ go.getComponent(Event)!.on('tap', ({ stopPropagation }) => stopPropagation());
40
40
  ```
41
41
 
42
42
  `plugin-a11y` forwards its DOM activation through this same Event Component, so subscribe once rather than adding a second a11y-specific action handler.
43
+
44
+ Pair playable controls with `LayoutRegion` from `@combos-fun/plugin-layout-contract` (`action: "start" | "primary" | "retry"`). `LayoutContractSystem.invokeAction` emits `touchstart` / `tap` / `touchend` on this same Event — do not add a second callback-only gameplay contract.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@combos-fun/plugin-renderer-event",
3
- "version": "0.1.7",
3
+ "version": "0.1.8",
4
4
  "description": "Pointer / touch event input via Pixi v8 interaction",
5
5
  "main": "index.js",
6
6
  "module": "dist/plugin-renderer-event.esm.js",
@@ -37,8 +37,8 @@
37
37
  "author": "sun668 <q947692259@gmail.com>",
38
38
  "dependencies": {
39
39
  "pixi.js": "^8.18.1",
40
- "@combos-fun/engine": "0.1.7",
41
- "@combos-fun/plugin-renderer": "0.1.7"
40
+ "@combos-fun/plugin-renderer": "0.1.8",
41
+ "@combos-fun/engine": "0.1.8"
42
42
  },
43
43
  "scripts": {
44
44
  "build": "node ../../scripts/build-package.mjs"