Why capsule collide after collision disabled?

I need to disable collision on third person character. I’m using standard from third person template. I need to disable collision, move player to destination point and enable collision. I disabled/enabled collision of it’s capsule by Set collision enabled node (no collision/collision enabled). But it collides with world static objects. When I disable collision manually in component view, when I start game there is no collision. Tried disable collision object by type, nothing… May be problem is in the third person template character?
What should I do, to handle it?

Hi MasterOfDreams,

Instead of disabling the collision of the capsule only, try disable the collision of the Player Pawn by using a GetPlayerPawn node and plugging that directly into the SetActorEnableCollision.

Cheers,

TJ

no, still collides

This is the setup I tested in 4.5.1 and it works with the default 3rd Person template.

Could you try it in a fresh project?

Thank you very much! I used Teleport node for my purpose, launch and set actor location nodes work well. I tested your sample, everything works.