Pixi Transform Tool
Description
I made a PIXI (v4) plugin which can transform a display object.
Installation
This entry records only its repository, not the path inside it, so there is no
exact command to give. Open the source below and copy the folder into
~/.claude/skills/, or the file into ~/.claude/agents/.
README
pixi-transform-tool
I made a PIXI (v4) plugin which can transform a display object.
Demo: http://dev4.digitop.vn/pixi-lab/pixi-transform-v4.html

How to use:
- Create a new TransformTool:
// canvas parameter is required!
var transformTool = new TransformTool({canvas: canvasElement});
stage.addChild(transformTool);
- Apply it on an object:
var object = new PIXI.Container();
stage.addChild(object);
...
object.on("mousedown", function(){
transformTool.apply(object);
});
- Or remove it on later:
transformTool.clear();
Parameters:
var transformTool = new TransformTool({
debug: false, // true: show debug layer
canvas: canvasElement, // this is required
scaleByRatio: true, // force scale/rotate by ratio ~ same function as holding SHIFT
lockReg: true, // lock changing registration point ~ force registration point at (0.5, 0.5)
border: true // show bound border around the transformed object
});
Some additional features:
- Hold SHIFT for scaling by ratio.
- Hold CTRL/CMD for scaling from the registration point.
Notes:
- Must include "js/plugins/gpixi.js" and "js/plugins/helper.js" before "js/plugins/pixi-transform-tool.min.js"
- jQuery is a need as well! (Sorry, I'm just too lazy to write pure Javascript)
- Hammer JS is required for multi touch handling.
- The code is still under development, there could be some bugs. But overall, it's good enough to go.
Please feel free to contribute!
Cheers,
Related Skills
Auto Update
Pull the latest ECC repo changes and reinstall the current managed targets.
Development Ecc Guide
Navigate ECC's current agents, skills, commands, hooks, install profiles, and docs from the live repository su
Development Epic Claim
Claim an epic issue, stamp coordination state, and sync local ownership.
Development Epic Publish
Publish a validated epic update back to the issue and local cache.
Development Epic Review
Mark epic review requested, approved, or changes requested.
Development Epic Unblock
Sweep blocked epic issues and reopen anything whose dependencies are closed.
Development Related Agents
Django Build Resolver
Django/Python build, migration, and dependency error resolution specialist. Fixes pip/Poetry errors, migration
Openai Codex CLI
(55.8k ⭐) - Lightweight coding agent that runs in your terminal.
src/agents/ — 11 Agent Definitions
**Generated:** 2026-04-11