Skip to content

Commit

Permalink
export plugins
Browse files Browse the repository at this point in the history
  • Loading branch information
rexrainbow committed Nov 9, 2024
1 parent 9ef7469 commit 1edd9bf
Show file tree
Hide file tree
Showing 48 changed files with 2,818 additions and 10,170 deletions.
878 changes: 436 additions & 442 deletions dist/rexaiospinner.js

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion dist/rexaiospinner.min.js

Large diffs are not rendered by default.

28 changes: 10 additions & 18 deletions dist/rexarrowspinner.js
Original file line number Diff line number Diff line change
Expand Up @@ -1643,6 +1643,16 @@
}
}

var StartAt = function (x, y, pathData) {
pathData.length = 0;

if (x != null) {
pathData.push(x, y);
}

return pathData;
};

var LineTo = function (x, y, pathData) {
var cnt = pathData.length;
if (cnt >= 2) {
Expand Down Expand Up @@ -1679,18 +1689,6 @@
return pathData;
};

Phaser.Math.DegToRad;

var StartAt = function (x, y, pathData) {
pathData.length = 0;

if (x != null) {
pathData.push(x, y);
}

return pathData;
};

//import QuadraticBezierInterpolation from '../../utils/math/interpolation/QuadraticBezierInterpolation.js';

const QuadraticBezierInterpolation = Phaser.Math.Interpolation.QuadraticBezier;
Expand Down Expand Up @@ -2330,12 +2328,6 @@
}
}

Phaser.Renderer.WebGL.Utils.getTintAppendFloatAlpha;

Phaser.Utils.Objects.GetValue;

Phaser.Renderer.WebGL.Utils.getTintAppendFloatAlpha;

var Yoyo = function (t, threshold) {
if (threshold === undefined) {
threshold = 0.5;
Expand Down
2 changes: 1 addition & 1 deletion dist/rexarrowspinner.min.js

Large diffs are not rendered by default.

Loading

0 comments on commit 1edd9bf

Please sign in to comment.