Playmaker Forum

PlayMaker Feedback => Feature Requests => Topic started by: mrphilipjoel on April 24, 2022, 08:33:14 AM

Title: Make the 'Activate Game Object' action not Recursive by Default
Post by: mrphilipjoel on April 24, 2022, 08:33:14 AM
I have started editing the action script on my latest projects to make 'recursive' set to false.

95% of the time I use this action, I don't want it to be recursive.

Please can we make it not recursive by default.

Thank you.
Title: Re: Make the 'Activate Game Object' action not Recursive by Default
Post by: Fat Pug Studio on April 28, 2022, 01:31:44 PM
Just change recursive to false and save it.

Code: [Select]
public override void Reset()
{
gameObject = null;
activate = true;
recursive = false;
resetOnExit = false;
everyFrame = false;
}
Title: Re: Make the 'Activate Game Object' action not Recursive by Default
Post by: mrphilipjoel on May 15, 2022, 12:27:24 AM
Yes. I do that. But, I have to do it for every project.
Title: Re: Make the 'Activate Game Object' action not Recursive by Default
Post by: blackant on July 07, 2022, 06:34:38 AM
I have started editing the action script on my latest projects to make 'recursive' set to false.

95% of the time I use this action, I don't want it to be recursive.

Please can we make it not recursive by default.

Thank you.

same here