playMaker

Author Topic: How to active obj after it's inactive already? [SOLVED]  (Read 2017 times)

kapoke69

  • Playmaker Newbie
  • *
  • Posts: 17
How to active obj after it's inactive already? [SOLVED]
« on: December 09, 2017, 10:27:30 PM »
i inactive obj by use "Active game object action" but i can't bring it active again by use the "Active game object action" , can u suggest me how to reactive, thx in advance
ps, sorry for my poor ENG.
« Last Edit: December 12, 2017, 03:53:50 AM by djaydino »

Deek

  • Full Member
  • ***
  • Posts: 133
Re: How to active obj after it's inactive already?
« Reply #1 on: December 10, 2017, 08:37:51 AM »
On the action "Activate Game Object" you have a bool (toggle button) called "Activate" which says if the GameObject should be activated or not. Just call this action again later when you want the GameObject to be activated by ticking that "Activate" button.


djaydino

  • Administrator
  • Hero Member
  • *****
  • Posts: 7616
    • jinxtergames
Re: How to active obj after it's inactive already?
« Reply #2 on: December 10, 2017, 01:52:59 PM »
Hi.
You can not activate on the same fsm, as the fsm will also be inactive.
So you need to activate from a different fsm.

kapoke69

  • Playmaker Newbie
  • *
  • Posts: 17
Re: How to active obj after it's inactive already?
« Reply #3 on: December 11, 2017, 08:56:28 PM »
So i need to active from differ FSM,Thx you both.