Playmaker Forum

PlayMaker Feedback => Community Wiki Suggestions => Topic started by: Zyxil on August 27, 2012, 10:56:41 PM

Title: Editing Wiki?
Post by: Zyxil on August 27, 2012, 10:56:41 PM
I don't see a way to log in to edit the wiki.  

I was going to add this simple action:

Code: [Select]
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);
            }
        }
    }
}
Title: Re: Editing Wiki?
Post by: jeanfabre on August 28, 2012, 03:08:01 AM
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 (http://hutonggames.com/playmakerforum/index.php?board=19.0)

bye,

 Jean
Title: Re: Editing Wiki?
Post by: Zyxil on August 28, 2012, 09:41:36 PM
posted in forum.

thanks, jean.