You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
All notable changes to this project will be documented in this file.
3
4
4
5
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
5
6
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).
6
7
7
-
## [1.1.4] - 05-07-2019
8
+
## v1.2.0 - 08-07-2019
9
+
10
+
### Added
11
+
- Hidden Sticks with hidden parameter to Stick class
12
+
- Setters API for easy use of Point and Stick constructors
13
+
- Method chaining for Point and Stick
14
+
- with setters api we can create customized Entity easily. `entity.addPoint(0, 0).pin().setRadius()`
15
+
16
+
### Fixed
17
+
18
+
- clamp function wrong parameter bug
19
+
- fixed development webpack environment
20
+
21
+
## v1.1.4 05-07-2019
22
+
8
23
### Fixed
24
+
9
25
- independent internal rendering engine
10
26
- multiple instance of verly.js was causing global var collisions (WIDTH, HEIGHT, CTX)
27
+
11
28
### Changed
29
+
12
30
- Entity.js Class now expects two arguments (iteration, verlyInstance) because previously we used global variables to keep track of WIDTH, HEIGHT and ctx which was casing some problems
13
31
- When extending Entity class we have to do super(iteration, verlyInstance)
14
-
- Point.js Class's render, constrain, update methods now expects verlyInstance and ctx variables to be passed.
32
+
- Point.js Class's render, constrain, update methods now expects verlyInstance and ctx variables to be passed.
0 commit comments