guansss / pixi-live2d-display

A PixiJS plugin to display Live2D models of any kind.
https://guansss.github.io/pixi-live2d-display/
MIT License
893 stars 137 forks source link

pc端正常显示,移动端模型变黑 #145

Closed HHaidai closed 5 months ago

HHaidai commented 5 months ago

pc端正常显示,移动端模型变黑,应该是移动端纹理的问题,请问怎么缩小模型图片的尺寸

HHaidai commented 5 months ago

亲测用一下py代码,压缩的图片正常显示

pip install Pillow

from PIL import Image img = Image.open("texture_8192.png") img_resized = img.resize((4096, 4096)) img_resized.save("texture_4096.png") 期待作者的自动调整纹理功能