There is function called "pixel rounding (I think it's called so)" and it makes moving objects don't become blurry. How can I do so in CC?
Develop games in your browser. Powerful, performant & highly capable.
Use point filtering and use this action for each object:
Set position to (round(.X), round(.Y))
Also round the scroll position:
Scroll to (round(scrollx), round(scrolly))