PlayMaker Feedback > Community Wiki Suggestions

Editing Wiki?

(1/1)

Zyxil:
I don't see a way to log in to edit the wiki.  

I was going to add this simple action:


--- Code: ---using UnityEngine;

namespace HutongGames.PlayMaker.Actions
{
    [ActionCategory(ActionCategory.GameObject)]
    [Tooltip("Destroy all children on the Game Object.")]
    public class DestroyChildren : FsmStateAction
    {
        [RequiredField]
        public FsmOwnerDefault gameObject;

        public override void Reset()
        {
            gameObject = null;
        }

        public override void OnEnter()
        {
            DoDestroyChildren(Fsm.GetOwnerDefaultTarget(gameObject));

            Finish();
        }

        static void DoDestroyChildren(GameObject go)
        {
            if (go != null)
            {
                for (int i = 0; i < go.transform.GetChildCount(); i++)
                    GameObject.Destroy(go.transform.GetChild(0).gameObject);
            }
        }
    }
}

--- End code ---

jeanfabre:
Hi,

 If you want to start editing the wiki, you should contact playmaker directly. In your case, I would suggest you post it to the share new action section:

http://hutonggames.com/playmakerforum/index.php?board=19.0

bye,

 Jean

Zyxil:
posted in forum.

thanks, jean.

Navigation

[0] Message Index

Go to full version