Dmitriy
Dmitriy
Like in the redsaurus' sp customization mod :) http://jkhub.org/topic/2480-sp-customisation-stuff/
Something like this: ``` local props = {} props.type = "stormtrooper" props.name = "anyname" -- as in npc spawn type name props.angles = Vector3(0,0,0) props.position = Vector3(0,0,0) props.health = 100...
Canvas drawing & interaction library. https://github.com/keyten/Graphics2D http://keyten.github.io/Graphics2D/
## Чеклист - [x] Я поискал поиском по трекеру похожие проблемы, в том числе в закрытых Issues - [x] Баг стабильно воспроизводится и я знаю как это сделать ## Описание...
Cyrillic
May be add the Cyrillic? If you want, I can do it.
```js ctx.image(url, 0, 0).attr('rotate', 45); // the image is not loaded yet so there are no bounds ```
1. `free`: there's a matrix and the methods `scale`, `rotate`, `skew`, `translate`, `transform` change it with any pivot. 2. `strict`: the matrix is generated from `scale`, `rotate`, `skew`, `translate` attrs...
Example: ```js ctx.attr('pointer-events', false); ctx.circle(100, 100, 50, 'red').attr('pointer-events', true).on('click', ...) // when onmousemove to circle canvas becomes mouse-available ```