Releases: dromara/newcar
v0.3.2-alpha
In this version, We:
- Adjust the default background color to black.
- Add new object, there are
CoordinateSystem
,Image
andRectangle
. - Export animation to video files.
- Change the API with a tiny changement.
- Improved AnimationBuilderItems.
v0.3.1-alpha
In this version, we add the class Polygon
to objects!
v0.3.0-alpha
This version is first stable version!
In this version, we improved and perfected the API for both objects
and animation-builder
, and let them be more hommization.
Welcome link to our documents: newcar.js.org!
v0.2.0-fix-alpha
The version is fixed, and this release will have any relation with npm version
In this version, we change the API for both AnimationBuilder
and Carobj
, now you just need a object can input information for build
example
In the past
const text = new Text("Hello world!", 100, 100)
text.size = 200;
Now
const text = new Text({
text: "Hello world!",
x: 100,
y: 100,
size: 200
})
In the pst
const a = Translation.create().....
Now
const a = new Translation({
// ......
})
v0.2.0-alpha
In this version, we change the API for both AnimationBuilder
and Carobj
, now you just need a object can input information for build
example
In the past
const text = new Text("Hello world!", 100, 100)
text.size = 200;
Now
const text = new Text({
text: "Hello world!",
x: 100,
y: 100,
size: 200
})
In the pst
const a = Translation.create().....
Now
const a = new Translation({
// ......
})
v0.1.0-alpha
In this version, we improve the user API and let it be more better.We let the AnimationBuilder
with the core in same class. and we rename Car
to dataSaver
, and Car
be the user API.
We also implement the Father And Son Objects in this version, you can add a child in a objects, and when the "father" change, "children" will follow it; but when the "children" change, "father" will not follow.
v0.0.2-alpha
Foundation establishment of core part