Motion blur on Cocos Creator

Hi guys,

I’m trying to make motion blur for one object. Anyone know how to achieve this on cocos creator?

Thank you so much

you should be more specific about what you want to achieve

to my knowledge there’s no built in way to do it -
assuming you want to blur the object itself, you would probably have to create a blurred version or versions in an image editor then add some code to the objects script update(dt) about swapping out spriteFrames based on dt * (node.position - previousPosition) (just pseudo code)

Thank you,

I created the effect by adding some same sprites with offset and different opacity.
It looks like motion blur.
I know it’s not elegant way but it works :smiley: