0
我剛剛開始使用webgl,並試圖製作基於spritesheet的動畫。我找到了一個例子,並將Spritesheet更改爲我自己的。不過,即使我刪除了白色背景,將其保存爲透明PNG,但動畫仍顯示爲白色背景。webgl的透明spritesheet動畫
這是我使用的示例: http://stemkoski.github.io/Three.js/Texture-Animation.html
有沒有什麼辦法,我怎麼能擺脫掉白色背景? 在此先感謝。
編輯:用α-通道
var runnerTexture = new THREE.ImageUtils.loadTexture('images/run.png');
annie = new TextureAnimator(runnerTexture, 10, 1, 10, 75); // texture, #horiz, #vert, #total, duration.
var runnerMaterial = new THREE.MeshBasicMaterial({ map: runnerTexture, side:THREE.DoubleSide });
var runnerGeometry = new THREE.PlaneGeometry(50, 50, 1, 1);
var runner = new THREE.Mesh(runnerGeometry, runnerMaterial);
runner.position.set(-150,25,0);
scene.add(runner);
請顯示您的代碼。 – Constantin
它與示例頁面上的代碼完全相同。我只改變了spritesheet。 – JustaN00b
請在您的問題本身中包含代碼。並非每個人都可以訪問外部網站,並且這些鏈接可能隨時間而中斷。另請參見[我如何提出一個好問題?](http://stackoverflow.com/help/how-to-ask) – Constantin