getsocial-im / getsocial-capture

The project goal is to let Unity developers record GIFs of gameplay of their game for easy sharing between friends.
https://www.getsocial.im
Apache License 2.0
123 stars 30 forks source link

Blur Gif #6

Closed pankti16 closed 5 years ago

pankti16 commented 5 years ago

The generated gif looks so blur, how can I fix it?

gaborvass commented 5 years ago

Hi, By default not the original screen size is captured:

_width = _camera.pixelWidth / 4;
_height = _camera.pixelHeight / 4;

Please change the above settings in Recorder.cs file in order to improve the quality. Take in mind that changing these values will affect the final gif size.

pankti16 commented 5 years ago

Thanks for your reply, already found it.