-
https://github.com/kyubuns/AnKuchen#scroll-list スクロールリストに要素を追加する方法はREADMEにて説明がありますが、現状コンテンツの内容を修正して再度表示する方法はあるのでしょうか? |
Beta Was this translation helpful? Give feedback.
Answered by
kyubuns
Apr 4, 2022
Replies: 1 comment 1 reply
-
以下のような方法で更新が可能です。 // まず3個の要素を作って
using (var editor = ui.List.Edit())
{
editor.Add(x =>
{
x.Text.text = "0行目";
});
editor.Add(x =>
{
x.Text.text = "1行目";
});
editor.Add(x =>
{
x.Text.text = "2行目";
});
}
yield return new WaitForSeconds(1.0f);
// index = 1 の要素だけ書き換える
using (var editor = ui.List.Edit(EditMode.DontClear))
{
editor.Contents[1] = new UIFactory<ListElements1>(x =>
{
x.Text.text = "1行目改";
});
} |
Beta Was this translation helpful? Give feedback.
1 reply
Answer selected by
kyubuns
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
以下のような方法で更新が可能です。