(id: string, status: boolean)
| 365 | }, 300); |
| 366 | } |
| 367 | public setObjectStatus(id: string, status: boolean){ |
| 368 | let object = this.getObject(id) |
| 369 | if(object != undefined){ |
| 370 | object.enabled = status |
| 371 | } |
| 372 | } |
| 373 | private getObject(id: string): StringScrollObject | undefined{ |
| 374 | let findedObject = undefined |
| 375 | this.animations.forEach(animation => { |