Anti-aliasing smooths jagged edges on curved lines and diagonals. How can I enable anti-aliasing on A-Frame?
Asked
Active
Viewed 2,444 times
2 Answers
8
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.

ngokevin
- 12,980
- 2
- 38
- 84
-
is there anything else need to be done to get more clarity on the scene? This definitely improved the scene but still i can see the effect. – Akki619 Jun 29 '18 at 10:06
-
1does nothing as far as i can see :( – Elad Katz Jul 19 '18 at 14:23
4
I think the previous answer is outdated. It is like this now.
<a-scene renderer="antialias: true">
...
</a-scene>

Kirill Kovalevskiy
- 1,942
- 2
- 11
- 8