[ts][player] Slower loading screen spinner.

This commit is contained in:
badlogic 2018-12-21 11:32:00 +01:00
parent f40bdaac3a
commit c774c45cb7
3 changed files with 3 additions and 3 deletions

View File

@ -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

View File

@ -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;