Explorar el Código

Fix uniform decorator setter.

master
Palash Bansal hace 2 años
padre
commit
edcdd80b11
No account linked to committer's email address
Se han modificado 1 ficheros con 3 adiciones y 2 borrados
  1. 3
    2
      src/three/utils/decorators.ts

+ 3
- 2
src/three/utils/decorators.ts Ver fichero

@@ -29,9 +29,10 @@ export function uniform({uniforms, propKey, thisTarget = false, onChange}: {unif
return getUniform(this).value
},
set(newVal: any) {
let val = getUniform(this).value
const u = getUniform(this)
const val = u.value
if (val === newVal) return
val = newVal
u.value = newVal
safeSetProperty(this, 'uniformsNeedUpdate', true, true)
onChange && callOnChange.call(this, onChange, [propertyKey, newVal])
},

Cargando…
Cancelar
Guardar