2016-08-18 103 views
1

在我的MacBook Pro與Chrome,antialias運作良好。webglrenderer抗鋸齒功能在某些設備上不起作用?

pic on macbook pro with chrome 但是,在我的iphone6s與Chrome或Safari瀏覽器,它不再工作了相同的代碼。 pic on iphone with Safari

+0

可能的複製(http://stackoverflow.com/questions/17224795/antialiasing-not-working-in-three- js) – Wilt

+0

一個測試可以在這裏找到:http://benchung.com/antialiasing-three-js/ – Wilt

回答

0

您是否設置了pixelratio?

renderer.setPixelRatio(window.devicePixelRatio); 
renderer.setSize(window.innerWidth, window.innerHeight); 

編輯:的[反走樣不three.js所工作]iOS does not support antialiasing at the moment

+0

這工作,我在macbook pro中測試window.devicePixelRatio是2,在iphone6s window.devicePixelRatio是3.謝謝! – antonyzhang