Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
14 changes: 7 additions & 7 deletions build/kiwi.d.ts
Original file line number Diff line number Diff line change
Expand Up @@ -10356,13 +10356,13 @@ declare module Kiwi.Animations {
* @method start
* @public
*/
start(): Tween;
start(): this;
/**
* Stops the Tween from running and removes it from the manager.
* @method stop
* @public
*/
stop(): Tween;
stop(): this;
/**
* Sets the game and the manager of this tween.
* @method setParent
Expand Down Expand Up @@ -10418,15 +10418,15 @@ declare module Kiwi.Animations {
* @param context {Any} The context the method is to have when called.
* @public
*/
onUpdate(callback: any, context: any): Tween;
onUpdate(callback: any, context: any): this;
/**
* Defines a method that is to be called when this tween is finished.
* @method onComplete
* @param callback {Function} The method that is to be executed.
* @param context {Any} The context the method is to have when called.
* @public
*/
onComplete(callback: any, context: any): Tween;
onComplete(callback: any, context: any): this;
/**
* The update loop is executed every frame whilst the tween is running.
* @method update
Expand Down Expand Up @@ -16282,7 +16282,7 @@ declare module Kiwi.Geom {
* @return {Kiwi.Geom.Matrix} This object.
* @public
*/
setFromTransform(tx: number, ty: number, scaleX: number, scaleY: number, rotation: number): Matrix;
setFromTransform(tx: number, ty: number, scaleX: number, scaleY: number, rotation: number): this;
/**
* Set matrix values from transform values, with rotation point data included
* @method setFromOffsetTransform
Expand All @@ -16297,7 +16297,7 @@ declare module Kiwi.Geom {
* @public
* @since 1.0.1
*/
setFromOffsetTransform(tx: number, ty: number, scaleX: number, scaleY: number, rotation: number, rotPointX: number, rotPointY: number): Matrix;
setFromOffsetTransform(tx: number, ty: number, scaleX: number, scaleY: number, rotation: number, rotPointX: number, rotPointY: number): this;
/**
* Prepend values to this matrix, paramters supplied individually.
* @method prepend
Expand Down Expand Up @@ -21588,7 +21588,7 @@ declare module Kiwi.Utils {
* @return {Kiwi.Utils.Color} This object with the new color set
* @public
*/
set(...params: any[]): Color;
set(...params: any[]): this;
/**
* Red channel, stored as a normalized value between 0 and 1.
* This is most compatible with graphics hardware.
Expand Down
Loading