Update to Cubism 4 SDK for Web R5 beta1

This commit is contained in:
wada
2022-05-19 14:23:41 +09:00
parent 13ba60d1b2
commit dd67abe333
27 changed files with 3049 additions and 1264 deletions

View File

@ -96,12 +96,7 @@ export class CubismIdManager {
*/
private findId(id: string): CubismId {
for (let i = 0; i < this._ids.getSize(); ++i) {
if (
this._ids
.at(i)
.getString()
.isEqual(id)
) {
if (this._ids.at(i).getString().isEqual(id)) {
return this._ids.at(i);
}
}