KBTween.js - Add "prefix" and "suffix" values.
This commit is contained in:
parent
d43a9e977c
commit
6044f53dc6
1 changed files with 10 additions and 5 deletions
15
KBTween.js
15
KBTween.js
|
@ -4,7 +4,8 @@
|
|||
* @param {number} second
|
||||
* @param {number} percent
|
||||
* @param {number} easePercent
|
||||
* @param {number} value
|
||||
* @param {number} value - The value, without prefix/suffix formatting.
|
||||
* @param {string} formattedValue - The value, with prefix/suffix formatting.
|
||||
*/
|
||||
/**
|
||||
* @callback onFinish - What to run when the tween ends.
|
||||
|
@ -35,6 +36,8 @@ export function KBTween(k) {
|
|||
* @param {Function} [config.onStart] - What to run when the tween starts.
|
||||
* @param {onUpdate} [config.onUpdate] - What to run every time the tween updates.
|
||||
* @param {onFinish} [config.onFinish] - What to run when the tween ends.
|
||||
* @param {string} [config.prefix] - What string to put before the value.
|
||||
* @param {string} [config.suffix] - What string to put after the value.
|
||||
* @returns {Function} - End the tween manually.
|
||||
*/
|
||||
const tween = (object, prop, time, config) => {
|
||||
|
@ -44,6 +47,8 @@ export function KBTween(k) {
|
|||
config.onStart = config.onStart ?? tweentypes.__NOOP;
|
||||
config.onUpdate = config.onUpdate ?? tweentypes.__NOOP;
|
||||
config.onFinish = config.onFinish ?? tweentypes.__NOOP;
|
||||
config.prefix = config.prefix ?? "";
|
||||
config.suffix = config.suffix ?? "";
|
||||
|
||||
var frame = 0;
|
||||
var startTime = k.time();
|
||||
|
@ -53,13 +58,13 @@ export function KBTween(k) {
|
|||
var curTime = k.time() - startTime;
|
||||
var curPercent = curTime / time.time;
|
||||
for (let i in prop) {
|
||||
object[prop[i]] = k.lerp(time.from, time.to, config.ease(curPercent));
|
||||
object[prop[i]] = config.prefix + k.lerp(time.from, time.to, config.ease(curPercent)) + config.suffix;
|
||||
}
|
||||
if (curPercent >= 1) {
|
||||
switch (time.type) {
|
||||
case 0:
|
||||
for (let i in prop) {
|
||||
object[prop[i]] = time.to;
|
||||
object[prop[i]] = config.prefix + time.to + config.suffix;
|
||||
}
|
||||
updateFunc();
|
||||
break;
|
||||
|
@ -78,13 +83,13 @@ export function KBTween(k) {
|
|||
loops++;
|
||||
config.onFinish(time, config, loops);
|
||||
}
|
||||
config.onUpdate(frame, curTime, curPercent, config.ease(curPercent), k.lerp(time.from, time.to, config.ease(curPercent)));
|
||||
config.onUpdate(frame, curTime, curPercent, config.ease(curPercent), k.lerp(time.from, time.to, config.ease(curPercent)), config.prefix + k.lerp(time.from, time.to, config.ease(curPercent)) + config.suffix);
|
||||
frame++;
|
||||
});
|
||||
return (clean) => {
|
||||
if (!clean) {
|
||||
for (let i in prop) {
|
||||
object[prop[i]] = time.to;
|
||||
object[prop[i]] = config.prefix + time.to + config.suffix;
|
||||
}
|
||||
}
|
||||
time.type = 0;
|
||||
|
|
Loading…
Reference in a new issue