问题
Anti-aliasing smooths jagged edges on curved lines and diagonals. How can I enable anti-aliasing on A-Frame?
回答1:
You can do:
<a-scene antialias="true">
Note that this does have a performance cost on higher resolution screens, but it is not determined whether that cost is a bottleneck.
回答2:
I think the previous answer is outdated. It is like this now.
<a-scene renderer="antialias: true">
...
</a-scene>
Docs
来源:https://stackoverflow.com/questions/39476791/how-to-enable-anti-aliasing-in-a-frame