Ver código fonte

Fix uniform decorator setter.

master
Palash Bansal 2 anos atrás
pai
commit
edcdd80b11
Nenhuma conta vinculada ao e-mail do autor do commit
1 arquivos alterados com 3 adições e 2 exclusões
  1. 3
    2
      src/three/utils/decorators.ts

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

@@ -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])
},

Carregando…
Cancelar
Salvar