Fix syntax

This commit is contained in:
yushijinhun 2018-10-20 15:40:52 +08:00
parent 97d892d10b
commit a495e0f629
No known key found for this signature in database
GPG Key ID: 5BC167F73EA558E4
1 changed files with 1 additions and 1 deletions

View File

@ -346,7 +346,7 @@ export class SkinObject extends THREE.Group {
} }
private getBodyParts() { private getBodyParts() {
return this.children.filter(it => it instanceof BodyPart) as BodyPart[]; return this.children.filter(it => it instanceof BodyPart) as Array<BodyPart>;
} }
set innerLayerVisible(value: boolean) { set innerLayerVisible(value: boolean) {