Ejemplo n.º 1
0
    public override bool Execute(GameObject target)
    {
        DialogContent content = new DialogContent();

        content._content = "Objet Name : " + target.name;
        content._action  = () => ModalDialog.Shut();

        //RadialMenu.Shut();

        ModalDialog.Show(content);

        return(true);
    }