扩展result支持autoHide
This commit is contained in:
parent
b5a79921a9
commit
384a80b84a
@ -194,8 +194,8 @@ public class ActionHelper
|
|||||||
}
|
}
|
||||||
case "ResultTip":
|
case "ResultTip":
|
||||||
{
|
{
|
||||||
var strAction = (XMLTool.StringListAction)act;
|
var strAction = (XMLTool.DictionaryAction)act;
|
||||||
return ResultTipAction.Allocate(act.Value, strAction.args[0], strAction.args[1]);
|
return ResultTipAction.Allocate(act.Value, strAction.args);
|
||||||
}
|
}
|
||||||
case "Led":
|
case "Led":
|
||||||
{
|
{
|
||||||
|
|||||||
@ -1,5 +1,6 @@
|
|||||||
using QFramework.Example;
|
using QFramework.Example;
|
||||||
using System;
|
using System;
|
||||||
|
using System.Collections.Generic;
|
||||||
using UnityEngine;
|
using UnityEngine;
|
||||||
|
|
||||||
namespace QFramework
|
namespace QFramework
|
||||||
@ -19,15 +20,17 @@ namespace QFramework
|
|||||||
public string txt;
|
public string txt;
|
||||||
public string isRight;
|
public string isRight;
|
||||||
public string finishedEvent;
|
public string finishedEvent;
|
||||||
public static ResultTipAction Allocate(string txt, string isRight, string finishedEvent, System.Action OnFinished = null)
|
string autoHide;
|
||||||
|
public static ResultTipAction Allocate(string txt, Dictionary<string, string> datas, System.Action OnFinished = null)
|
||||||
{
|
{
|
||||||
var retNode = mPool.Allocate();
|
var retNode = mPool.Allocate();
|
||||||
retNode.ActionID = ActionKit.ID_GENERATOR++;
|
retNode.ActionID = ActionKit.ID_GENERATOR++;
|
||||||
retNode.Deinited = false;
|
retNode.Deinited = false;
|
||||||
retNode.Reset();
|
retNode.Reset();
|
||||||
retNode.txt = txt;
|
retNode.txt = txt;
|
||||||
retNode.isRight = isRight;
|
retNode.isRight = datas.ContainsKey("isRight") ? datas["isRight"] : "";
|
||||||
retNode.finishedEvent = finishedEvent;
|
retNode.finishedEvent = datas.ContainsKey("finishedEvent") ? datas["finishedEvent"] : "";
|
||||||
|
retNode.autoHide = datas.ContainsKey("autoHide") ? datas["autoHide"] : "-1";
|
||||||
retNode.OnFinished = OnFinished;
|
retNode.OnFinished = OnFinished;
|
||||||
return retNode;
|
return retNode;
|
||||||
}
|
}
|
||||||
@ -45,6 +48,7 @@ namespace QFramework
|
|||||||
{
|
{
|
||||||
data.callback = () => StringEventSystem.Global.Send(finishedEvent);
|
data.callback = () => StringEventSystem.Global.Send(finishedEvent);
|
||||||
}
|
}
|
||||||
|
float.TryParse(autoHide, out data.autoHideTime);
|
||||||
UIKit.OpenPanelAsync<UIResultTip>(uiData: data, canvasLevel: UILevel.PopUI).ToAction().StartGlobal(() => this.Finish());
|
UIKit.OpenPanelAsync<UIResultTip>(uiData: data, canvasLevel: UILevel.PopUI).ToAction().StartGlobal(() => this.Finish());
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
@ -779,7 +779,7 @@ namespace XMLTool
|
|||||||
}
|
}
|
||||||
newAction = act;
|
newAction = act;
|
||||||
}
|
}
|
||||||
|
|
||||||
break;
|
break;
|
||||||
case "LoadRes":
|
case "LoadRes":
|
||||||
{
|
{
|
||||||
@ -884,24 +884,21 @@ namespace XMLTool
|
|||||||
break;
|
break;
|
||||||
case "ResultTip":
|
case "ResultTip":
|
||||||
{
|
{
|
||||||
var act = new StringListAction();
|
var act = new DictionaryAction();
|
||||||
XAttribute isRight = action.Attribute("isRight");
|
XAttribute isRight = action.Attribute("isRight");
|
||||||
if (isRight != null)
|
if (isRight != null)
|
||||||
{
|
{
|
||||||
act.args.Add(isRight.Value);
|
act.args.Add("isRight", isRight.Value);
|
||||||
}
|
|
||||||
else
|
|
||||||
{
|
|
||||||
act.args.Add("false");
|
|
||||||
}
|
}
|
||||||
XAttribute finishedEvent = action.Attribute("finishedEvent");
|
XAttribute finishedEvent = action.Attribute("finishedEvent");
|
||||||
if (finishedEvent != null)
|
if (finishedEvent != null)
|
||||||
{
|
{
|
||||||
act.args.Add(finishedEvent.Value);
|
act.args.Add("finishedEvent", finishedEvent.Value);
|
||||||
}
|
}
|
||||||
else
|
XAttribute autoHide = action.Attribute("autoHide");
|
||||||
|
if (autoHide != null)
|
||||||
{
|
{
|
||||||
act.args.Add("");
|
act.args.Add("autoHide", autoHide.Value);
|
||||||
}
|
}
|
||||||
newAction = act;
|
newAction = act;
|
||||||
}
|
}
|
||||||
|
|||||||
@ -114,7 +114,7 @@
|
|||||||
<!--相机锁定 是否可以移动 isMove 是否可以旋转镜头 isRotate-->
|
<!--相机锁定 是否可以移动 isMove 是否可以旋转镜头 isRotate-->
|
||||||
<Action type="CameraLock" isMove="false" isRotate="false"></Action>
|
<Action type="CameraLock" isMove="false" isRotate="false"></Action>
|
||||||
<!--正确和错误的弹窗 isRight 是否正确-->
|
<!--正确和错误的弹窗 isRight 是否正确-->
|
||||||
<Action type="ResultTip" value="这里是一个弹窗" isRight="true" finishedEvent="关闭弹窗事件"></Action>
|
<Action type="ResultTip" value="这里是一个弹窗" isRight="true" finishedEvent="关闭弹窗事件" autoHide="1"></Action>
|
||||||
|
|
||||||
<!--Led数字显示 要求每个数字单独一个模型面片,所有数字面片放在一个物体的子级,第一个物体是最右侧的数字,只能放数字面片模型 不要放其他的东西
|
<!--Led数字显示 要求每个数字单独一个模型面片,所有数字面片放在一个物体的子级,第一个物体是最右侧的数字,只能放数字面片模型 不要放其他的东西
|
||||||
number 是数值 支持 小数点和横线 例如 12.34 3-5 -->
|
number 是数值 支持 小数点和横线 例如 12.34 3-5 -->
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user