This commit is contained in:
2020-07-11 20:53:21 +08:00
parent ab64739382
commit ac03de0387
69 changed files with 4130 additions and 1218 deletions

View File

@@ -101,7 +101,11 @@ public class CLUIFormRoot : MonoBehaviour
return map;
}
public void setValue (object map, bool onlySetWhenContainKey = false)
public void setValue(object map)
{
setValue(map, false);
}
public void setValue (object map, bool onlySetWhenContainKey)
{
if (map is LuaTable) {
setValue (transform, map, true, onlySetWhenContainKey);