Created option to pass in static file for fallback for logo.

This commit is contained in:
Kevin Serrano 2016-08-23 14:11:25 -07:00
parent cec88cc9ac
commit 5168232481
2 changed files with 5 additions and 3 deletions

BIN
app/images/icon-512.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 41 KiB

View File

@ -14,7 +14,9 @@ function Mascot () {
pxNotRatio: true, pxNotRatio: true,
width: 200, width: 200,
height: 200, height: 200,
staticImage: './images/icon-512.png'
}) })
debugger;
if (!this.logo.webGLSupport) return if (!this.logo.webGLSupport) return
this.refollowMouse = debounce(this.logo.setFollowMouse.bind(this.logo, true), 1000) this.refollowMouse = debounce(this.logo.setFollowMouse.bind(this.logo, true), 1000)
this.unfollowMouse = this.logo.setFollowMouse.bind(this.logo, false) this.unfollowMouse = this.logo.setFollowMouse.bind(this.logo, false)
@ -46,12 +48,12 @@ Mascot.prototype.componentDidMount = function () {
} }
Mascot.prototype.componentWillUnmount = function () { Mascot.prototype.componentWillUnmount = function () {
if (!this.logo) return if (!this.logo.webGLSupport) return
this.logo.canvas.remove() this.logo.canvas.remove()
} }
Mascot.prototype.handleAnimationEvents = function () { Mascot.prototype.handleAnimationEvents = function () {
if (!this.logo) return if (!this.logo.webGLSupport) return
// only setup listeners once // only setup listeners once
if (this.animations) return if (this.animations) return
this.animations = this.props.animationEventEmitter this.animations = this.props.animationEventEmitter
@ -60,7 +62,7 @@ Mascot.prototype.handleAnimationEvents = function () {
} }
Mascot.prototype.lookAt = function (target) { Mascot.prototype.lookAt = function (target) {
if (!this.logo) return if (!this.logo.webGLSupport) return
this.unfollowMouse() this.unfollowMouse()
this.logo.lookAt(target) this.logo.lookAt(target)
this.refollowMouse() this.refollowMouse()