jidasheng

Results 2 comments of jidasheng

I solved it by changing the textureBlendMode from BlendMode.srcOver to BlendMode.modulate in line 25 of [scene.dart](https://github.com/zesage/flutter_cube/blob/master/lib/src/scene.dart) ```dart //BlendMode textureBlendMode = BlendMode.srcOver; BlendMode textureBlendMode = BlendMode.modulate; ``` This bug affects not...

Yes. Any image texture will affect. The perfect solution is: ```dart //BlendMode textureBlendMode = BlendMode.srcOver; BlendMode textureBlendMode = BlendMode.multiply; ```