Error in "Components and Collision" Programming Tutorial

URL: https://docs.unrealengine.com/latest/INT/Programming/Tutorials/Components/5/index.html

This line:

OurParticleSystem->Activate(!OurParticleSystem->IsActive());

Should be:

OurParticleSystem->SetActive(!OurParticleSystem->IsActive());

Otherwise, you can’t toggle the particle system as described in the tutorial.

Thanks!

Hi mattsonic,

Thank you for your report. I have entered a bug report, UEDOC-1431 to be assessed by the documentation team.