mirror of
https://github.com/EsotericSoftware/spine-runtimes.git
synced 2026-02-06 07:14:55 +08:00
[ts][player] Slower loading screen spinner.
This commit is contained in:
parent
f40bdaac3a
commit
c774c45cb7
@ -7199,7 +7199,7 @@ var spine;
|
||||
return;
|
||||
this.timeKeeper.update();
|
||||
var a = Math.abs(Math.sin(this.timeKeeper.totalTime + 0.75));
|
||||
this.angle -= this.timeKeeper.delta * 360 * (1 + 1.5 * Math.pow(a, 5));
|
||||
this.angle -= this.timeKeeper.delta / 1.4 * 360 * (1 + 1.5 * Math.pow(a, 5));
|
||||
var renderer = this.renderer;
|
||||
var canvas = renderer.canvas;
|
||||
var gl = renderer.context.gl;
|
||||
|
||||
File diff suppressed because one or more lines are too long
@ -80,7 +80,7 @@ module spine.webgl {
|
||||
|
||||
this.timeKeeper.update();
|
||||
let a = Math.abs(Math.sin(this.timeKeeper.totalTime + 0.75));
|
||||
this.angle -= this.timeKeeper.delta * 360 * (1 + 1.5 * Math.pow(a, 5));
|
||||
this.angle -= this.timeKeeper.delta / 1.4 * 360 * (1 + 1.5 * Math.pow(a, 5));
|
||||
|
||||
let renderer = this.renderer;
|
||||
let canvas = renderer.canvas;
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user