This commit is contained in:
2020-07-10 13:22:24 +08:00
parent 8c154e38ba
commit 9549990b66
108 changed files with 5668 additions and 888 deletions

View File

@@ -53,7 +53,7 @@ namespace Coolape
float times = 0;
// Update is called once per frame
void FixedUpdate ()
void Update ()
{
if (isMoveToNow) {
times += speed * Time.unscaledDeltaTime;

View File

@@ -22,7 +22,7 @@ public class CLUIElementPopList : UIEventListener
ArrayList values = new ArrayList ();
values.AddRange (poplist.valueItems);
if (poplist.items.Count == 0) {
CLAlert.add (Localization.Get ("EmpyContent"), Color.white, 1, 1, false, Vector3.zero);
//CLAlert.add (Localization.Get ("EmpyContent"), Color.white, 1, 1, false, Vector3.zero);
}
CLUIPopListPanel.show (poplist.items, values, (Callback)onSelectedValue);
}