simple changes
This commit is contained in:
@@ -30,7 +30,7 @@ export class App {
|
||||
this.input = new Input()
|
||||
this.overlay = new DomOverlay(SCENES, {
|
||||
onNavClick: (s) => { this.scene = s },
|
||||
onButtonClick: () => { this.scene = (this.scene + 1) % 5 }
|
||||
onButtonClick: () => { this.scene = (this.scene + 1) % 4 }
|
||||
})
|
||||
this.overlay.setScene(this.scene)
|
||||
this.resize()
|
||||
@@ -63,8 +63,8 @@ export class App {
|
||||
private computeStemMultipliers(time: number): void {
|
||||
const sm = this.stemMultipliers
|
||||
// scene-based color identity and speed
|
||||
const colorBase = [0.0, 0.6, 1.2, 1.8, 2.4]
|
||||
const speedBase = [0.0, 0.2, 0.1, 0.0, 0.15]
|
||||
const colorBase = [0.0, 0.6, 1.2, 2.4]
|
||||
const speedBase = [0.0, 0.2, 0.1, 0.15]
|
||||
const scene = this.scene
|
||||
|
||||
// [0] = (camera speed, 0, color offset, twist/flash)
|
||||
|
||||
Reference in New Issue
Block a user