Skip to content

Commit 7e2e6a5

Browse files
committed
fixed: UUebView bug fixed.
1 parent 11ef77b commit 7e2e6a5

3 files changed

Lines changed: 12 additions & 0 deletions

File tree

1.5 KB
Binary file not shown.

Assets/Autoya/Information/UUebViewComponent.cs

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -120,5 +120,17 @@ GameObject IUUebView.GetGameObject () {
120120
void IUUebView.StartCoroutine (IEnumerator iEnum) {
121121
this.StartCoroutine(iEnum);
122122
}
123+
124+
public void AppendContentToTree (string htmlContent, string query) {
125+
this.Core.AppendContentToLast(htmlContent, query);
126+
}
127+
128+
public void AppendContentToLast (string htmlContent) {
129+
this.Core.AppendContentToLast(htmlContent);
130+
}
131+
132+
public void DeleteByPoint (string query) {
133+
this.Core.DeleteByPoint(query);
134+
}
123135
}
124136
}

Autoya.unitypackage

1.91 KB
Binary file not shown.

0 commit comments

Comments
 (0)